Bugfix : prendre le innerHTML du body du document n'est pas une bonne idée, dans...
authorBenoît Pin <benoit.pin@gmail.com>
Wed, 7 Sep 2011 20:51:59 +0000 (22:51 +0200)
committerBenoît Pin <benoit.pin@gmail.com>
Wed, 7 Sep 2011 20:51:59 +0000 (22:51 +0200)
skins/ckeditor/plugins/plinn_image/plugin.js

index 022af4c..ffb96fe 100644 (file)
@@ -49,11 +49,12 @@ CKEDITOR.plugins.add( 'plinn_image',
                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]);
-                                       evt.data.dataValue = evt.editor.document.$.body.innerHTML;
+                                       evt.data.dataValue = tmpDiv.innerHTML;
                                }
                        );
                });