mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 06:05:56 +00:00
MINOR Merge errors
This commit is contained in:
parent
80fe9c8864
commit
a317b66a8a
@ -31,7 +31,10 @@
|
||||
$('#Form_EditForm_File .ss-gridfield-item').entwine({
|
||||
onclick: function(e) {
|
||||
// Let actions do their own thing
|
||||
if($(e.target).is('.action')) return;
|
||||
if($(e.target).is('.action')) {
|
||||
this._super();
|
||||
return;
|
||||
}
|
||||
|
||||
var grid = this.closest('.ss-gridfield');
|
||||
if(this.data('class') == 'Folder') {
|
||||
|
@ -1,5 +1,5 @@
|
||||
jQuery(function($){
|
||||
$('fieldset.ss-gridfield').entwine({
|
||||
$('.ss-gridfield').entwine({
|
||||
onopennewview: function(e, url) {
|
||||
$('.cms-container').entwine('ss').loadPanel(url);
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user