mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
f20ad434ce
API Allow HtmlEditorField to be individually configured BUG Fix incorrect change detection BUG Fix missing i18n files
45 lines
1.0 KiB
JavaScript
45 lines
1.0 KiB
JavaScript
(function (global, factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define('ss.ModelAdmin', ['jQuery'], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory(require('jQuery'));
|
|
} else {
|
|
var mod = {
|
|
exports: {}
|
|
};
|
|
factory(global.jQuery);
|
|
global.ssModelAdmin = mod.exports;
|
|
}
|
|
})(this, function (_jQuery) {
|
|
'use strict';
|
|
|
|
var _jQuery2 = _interopRequireDefault(_jQuery);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
_jQuery2.default.entwine('ss', function ($) {
|
|
$('.cms-content-tools #Form_SearchForm').entwine({
|
|
onsubmit: function onsubmit(e) {
|
|
this.trigger('beforeSubmit');
|
|
}
|
|
});
|
|
$('.importSpec').entwine({
|
|
onmatch: function onmatch() {
|
|
this.find('div.details').hide();
|
|
this.find('a.detailsLink').click(function () {
|
|
$('#' + $(this).attr('href').replace(/.*#/, '')).slideToggle();
|
|
return false;
|
|
});
|
|
|
|
this._super();
|
|
},
|
|
onunmatch: function onunmatch() {
|
|
this._super();
|
|
}
|
|
});
|
|
});
|
|
}); |