12345678910111213141516171819202122 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- define(['ko'], function (ko) {
- 'use strict';
- var isInAction = ko.observable(false);
- return {
- isInAction: isInAction,
- /**
- * @param {jQuery.Event} event
- */
- stopEventPropagation: function (event) {
- event.stopImmediatePropagation();
- event.preventDefault();
- }
- };
- });
|