[FIX] Website: Image editing not possible with safari.

opw-626209
This commit is contained in:
Goffin Simon 2015-01-27 17:08:01 +01:00
parent 835065531c
commit c6e2d97c04
1 changed files with 6 additions and 1 deletions

View File

@ -1900,7 +1900,12 @@
this._super();
},
clear: function () {
delete this.media.$.dataset.src;
if(this.media.$.dataset.ckeSavedSrc){
delete this.media.$.dataset.ckeSavedSrc;
}
if(this.media.$.dataset.src){
delete this.media.$.dataset.src;
}
this.media.$.className = this.media.$.className.replace(/(^|\s)media_iframe_video(\s|$)/g, ' ');
},
});