mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
36 lines
742 B
JavaScript
36 lines
742 B
JavaScript
/**
|
|
* File: ModelAdmin.js
|
|
*/
|
|
|
|
(function($) {
|
|
$.entwine('ss', function($){
|
|
$('.cms-content-tools #Form_SearchForm').entwine({
|
|
onsubmit: function(e) {
|
|
//We need to trigger handleStateChange() explicitly, otherwise handleStageChange()
|
|
//doesn't called if landing from another section of cms
|
|
this.trigger('beforeSubmit');
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Class: .importSpec
|
|
*
|
|
* Toggle import specifications
|
|
*/
|
|
$('.importSpec').entwine({
|
|
onmatch: function() {
|
|
this.hide();
|
|
this.find('a.detailsLink').click(function() {
|
|
$('#' + $(this).attr('href').replace(/.*#/,'')).toggle();
|
|
return false;
|
|
});
|
|
|
|
this._super();
|
|
},
|
|
onunmatch: function() {
|
|
this._super();
|
|
}
|
|
});
|
|
});
|
|
})(jQuery);
|