mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
13 lines
281 B
JavaScript
13 lines
281 B
JavaScript
jQuery(function($){
|
|
$('.ss-gridfield').entwine({
|
|
onopennewview: function(e, url) {
|
|
$('.cms-container').entwine('ss').loadPanel(url);
|
|
return false;
|
|
},
|
|
|
|
onopeneditview: function(e, url) {
|
|
$('.cms-container').entwine('ss').loadPanel(url);
|
|
return false;
|
|
}
|
|
});
|
|
}); |