iframe.js 455 B

12345678910111213141516171819202122
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define(['ko'], function (ko) {
  6. 'use strict';
  7. var isInAction = ko.observable(false);
  8. return {
  9. isInAction: isInAction,
  10. /**
  11. * @param {jQuery.Event} event
  12. */
  13. stopEventPropagation: function (event) {
  14. event.stopImmediatePropagation();
  15. event.preventDefault();
  16. }
  17. };
  18. });