2016-01-11 02:25:30 +01:00
|
|
|
(function (global, factory) {
|
|
|
|
if (typeof define === "function" && define.amd) {
|
|
|
|
define('ss.CMSSecurity', ['jQuery'], factory);
|
|
|
|
} else if (typeof exports !== "undefined") {
|
|
|
|
factory(require('jQuery'));
|
|
|
|
} else {
|
|
|
|
var mod = {
|
|
|
|
exports: {}
|
|
|
|
};
|
|
|
|
factory(global.jQuery);
|
|
|
|
global.ssCMSSecurity = mod.exports;
|
|
|
|
}
|
|
|
|
})(this, function (_jQuery) {
|
2016-02-12 04:00:15 +01:00
|
|
|
'use strict';
|
|
|
|
|
2016-01-11 02:25:30 +01:00
|
|
|
var _jQuery2 = _interopRequireDefault(_jQuery);
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) {
|
|
|
|
return obj && obj.__esModule ? obj : {
|
|
|
|
default: obj
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
_jQuery2.default.noConflict();
|
|
|
|
|
|
|
|
_jQuery2.default.entwine.warningLevel = _jQuery2.default.entwine.WARN_LEVEL_BESTPRACTISE;
|
|
|
|
_jQuery2.default.entwine('ss', function ($) {
|
|
|
|
$('.cms input[type="submit"], .cms button, .cms input[type="reset"], .cms .ss-ui-button').entwine({
|
|
|
|
onadd: function onadd() {
|
|
|
|
this.addClass('ss-ui-button');
|
|
|
|
if (!this.data('button')) this.button();
|
|
|
|
this._super();
|
|
|
|
},
|
|
|
|
onremove: function onremove() {
|
|
|
|
if (this.data('button')) this.button('destroy');
|
|
|
|
this._super();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|