You are not logged in.
Pages: 1
When I copy an image has link and paste it in other place, new image was lost link. I fix the code for copy like this and it run ok.
case "copy":
this._doc.execCommand("cut", UI, param);
this._doc.execCommand("paste", UI, param);
if ( this.config.killWordOnPaste )
{
this._wordClean();
}
break;
Do you think it ok?
Offline
Pages: 1