12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- define([], function () {
- 'use strict';
- return {
- popUp: false,
- /**
- * @param {Object} popUp
- */
- setPopup: function (popUp) {
- this.popUp = popUp;
- },
- /**
- * Show popup.
- */
- show: function () {
- if (this.popUp) {
- this.popUp.modal('openModal');
- }
- },
- /**
- * Hide popup.
- */
- hide: function () {
- if (this.popUp) {
- this.popUp.modal('closeModal');
- }
- }
- };
- });
|