12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- define([
- 'jquery',
- 'Magento_Ui/js/modal/modal'
- ], function ($, modal) {
- 'use strict';
- return {
- modalWindow: null,
- /**
- * Create popUp window for provided element
- *
- * @param {HTMLElement} element
- */
- createPopUp: function (element) {
- var options = {
- 'type': 'popup',
- 'modalClass': 'popup-authentication',
- 'focus': '[name=username]',
- 'responsive': true,
- 'innerScroll': true,
- 'trigger': '.proceed-to-checkout',
- 'buttons': []
- };
- this.modalWindow = element;
- modal(options, $(this.modalWindow));
- },
- /** Show login popup window */
- showModal: function () {
- $(this.modalWindow).modal('openModal').trigger('contentUpdated');
- }
- };
- });
|