mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Bug fix for open/8181 which stops the HTML source editor window saving/publishing
This commit is contained in:
parent
e1517044cf
commit
d12ae82f70
@ -1319,5 +1319,16 @@ function sapphiremce_cleanup(type, value) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if we are inserting from a popup back into the editor
|
||||||
|
// add the changed class and update the Content value
|
||||||
|
if(type == 'insert_to_editor') {
|
||||||
|
var field = jQuery('#' + tinyMCE.selectedInstance.editorId);
|
||||||
|
var original = field.val();
|
||||||
|
if (original != value) {
|
||||||
|
field.val(value).addClass('changed');
|
||||||
|
field.closest('form').addClass('changed');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user