By Ray, Fix structure page editing bug

This commit is contained in:
Manson Wang 2013-11-06 16:48:56 +08:00
parent f191029279
commit 5df8ff2e52
1 changed files with 5 additions and 1 deletions

View File

@ -132,7 +132,11 @@ function iFrameContent() {
$('#pageslide_iframe').load(function() {
var $iContents = $(this).contents(),
$pc = $iContents.find('.page_content');
$(this).get(0).contentWindow.externalFunction(iFrameFunction, $iContents, $pc);
try {
$(this).get(0).contentWindow.externalFunction(iFrameFunction, $iContents, $pc);
} catch(err) {
console.log(err);
}
});
}
function pageSetting(id, edit) {