projects
/
ckeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Bouton d'insertion d'image raccord avec le thème ckeditor4.
[ckeditor.git]
/
skins
/
ckeditor
/
plugins
/
plinn_image
/
plugin.js
diff --git
a/skins/ckeditor/plugins/plinn_image/plugin.js
b/skins/ckeditor/plugins/plinn_image/plugin.js
index
022af4c
..
ebce6a9
100644
(file)
--- a/
skins/ckeditor/plugins/plinn_image/plugin.js
+++ b/
skins/ckeditor/plugins/plinn_image/plugin.js
@@
-49,27
+49,34
@@
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;
}
);
});
var pluginPath = this.path;
}
);
});
var pluginPath = this.path;
+ var allowed = 'img[alt,!src]{border-style,border-width,float,height,margin,margin-bottom,margin-left,margin-right,margin-top,width}';
+ var required = 'img[alt,src]';
var command = editor.addCommand('plinn_image',
{
var command = editor.addCommand('plinn_image',
{
- exec : function(editor){openPlinnImageDialog(pluginPath, editor);}
- });
+ exec : function(editor){openPlinnImageDialog(pluginPath, editor);},
+ allowedContent: allowed,
+ requiredContent: required
+ }
+ );
editor.ui.addButton('PlinnImage',
{
label : editor.lang.common.image,
editor.ui.addButton('PlinnImage',
{
label : editor.lang.common.image,
- icon : pluginPath + 'dialog/plinn_image.
gif
',
+ icon : pluginPath + 'dialog/plinn_image.
png
',
command : 'plinn_image'
});
}
command : 'plinn_image'
});
}
+
});
})();
});
})();