1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
- ;(function($, window) {
- 'use strict';
- $(function() {
- django_browserid.registerWatchHandlers();
- // Trigger login whenever a login link is clicked, and redirect the user
- // once it succeeds.
- $(document).on('click', '.browserid-login', function(e) {
- e.preventDefault();
- var $link = $(this);
- django_browserid.login($link.data('next')).then(function(verifyResult) {
- window.location = verifyResult.redirect;
- }, function(jqXHR) {
- try {
- var response = JSON.parse(jqXHR.responseText);
- if (response.redirect) {
- window.location = response.redirect;
- } else {
- console.error('Unable to redirect after login failure: No redirect provided.');
- }
- } catch(err) {
- console.error('Unable to redirect after login failure: %o', err);
- }
- });
- });
- // Trigger logout whenever a logout link is clicked, and redirect the
- // user once it succeeds.
- $(document).on('click', '.browserid-logout', function(e) {
- e.preventDefault();
- var $link = $(this);
- django_browserid.logout($link.data('next')).then(function(logoutResult) {
- window.location = logoutResult.redirect;
- }, function(jqXHR) {
- console.error('Unable to redirect after logout failure: No redirect provided.');
- });
- });
- });
- })(jQuery, window);
|