cancel.js 409 B

12345678910111213
  1. (function($) {
  2. 'use strict';
  3. $(function() {
  4. $('.cancel-link').on('click', function(e) {
  5. e.preventDefault();
  6. if (window.location.search.indexOf('&_popup=1') === -1) {
  7. window.history.back(); // Go back if not a popup.
  8. } else {
  9. window.close(); // Otherwise, close the popup.
  10. }
  11. });
  12. });
  13. })(django.jQuery);