123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- define([
- 'jquery',
- 'jquery/ui'
- ], function ($) {
- 'use strict';
- $.widget('mage.redirectUrl', {
- options: {
- event: 'click',
- url: undefined
- },
- /**
- * This method binds elements found in this widget.
- * @private
- */
- _bind: function () {
- var handlers = {};
- handlers[this.options.event] = '_onEvent';
- this._on(handlers);
- },
- /**
- * This method constructs a new widget.
- * @private
- */
- _create: function () {
- this._bind();
- },
- /**
- * This method set the url for the redirect.
- * @private
- */
- _onEvent: function () {
- if (this.options.url) {
- location.href = this.options.url;
- } else {
- location.href = this.element.val();
- }
- }
- });
- return $.mage.redirectUrl;
- });
|