projects
/
ckeditor.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
226d255
)
Bugfix : prendre le innerHTML du body du document n'est pas une bonne idée, dans...
author
Benoît Pin
<benoit.pin@gmail.com>
Wed, 7 Sep 2011 20:51:59 +0000
(22:51 +0200)
committer
Benoît Pin
<benoit.pin@gmail.com>
Wed, 7 Sep 2011 20:51:59 +0000
(22:51 +0200)
skins/ckeditor/plugins/plinn_image/plugin.js
patch
|
blob
|
history
diff --git
a/skins/ckeditor/plugins/plinn_image/plugin.js
b/skins/ckeditor/plugins/plinn_image/plugin.js
index
022af4c
..
ffb96fe
100644
(file)
--- a/
skins/ckeditor/plugins/plinn_image/plugin.js
+++ b/
skins/ckeditor/plugins/plinn_image/plugin.js
@@
-49,11
+49,12
@@
CKEDITOR.plugins.add( 'plinn_image',
editor.on('instanceReady', function(){
editor.on('getData',
function(evt) {
editor.on('instanceReady', function(){
editor.on('getData',
function(evt) {
- var body = evt.editor.document.$.body;
- var images = body.getElementsByTagName('IMG');
+ var tmpDiv = document.createElement('div');
+ tmpDiv.innerHTML = evt.data.dataValue;
+ var images = tmpDiv.getElementsByTagName('IMG');
for (var i = 0 ; i < images.length ; i++)
updateImageSizeUrlParameters(images[i]);
for (var i = 0 ; i < images.length ; i++)
updateImageSizeUrlParameters(images[i]);
- evt.data.dataValue =
evt.editor.document.$.body
.innerHTML;
+ evt.data.dataValue =
tmpDiv
.innerHTML;
}
);
});
}
);
});