afa30ce85005e5de1d044361cdddcfca38c95771
1 /* © 2011 Benoît Pin, MINES ParisTech */
6 var reSize
= /getResizedImage\?size=(\d+)_(\d+)$/;
8 function updateImageSizeUrlParameters(img
) {
9 if (reSize
.test(img
.src
)){
10 var matches
= reSize
.exec(img
.src
);
11 var srcWidth
= parseInt(matches
[1]);
12 var srcHeight
= parseInt(matches
[2]);
14 var imgWidth
= parseInt((img
.style
.width
) ? img
.style
.width
: img
.width
);
15 var imgHeight
= parseInt((img
.style
.height
) ? img
.style
.height
: img
.height
);
17 if ((imgWidth
&& imgHeight
) && srcWidth
!= imgWidth
&& srcHeight
!= imgHeight
) {
18 var newUrl
= img
.getAttribute('src', 2).replace(reSize
, 'getResizedImage?size=' + imgWidth
+ '_' + imgHeight
);
20 img
.height
= imgHeight
;
27 CKEDITOR
.plugins
.add( 'plinn_image',
29 init : function( editor
)
31 /* Add listener on getData event to compute images
32 src attributes before saving data.
34 editor
.on('instanceReady', function(){
37 var body
= evt
.editor
.document
.$.body
;
38 var images
= body
.getElementsByTagName('IMG');
39 for (var i
= 0 ; i
< images
.length
; i
++)
40 updateImageSizeUrlParameters(images
[i
]);
41 evt
.data
.dataValue
= evt
.editor
.document
.$.body
.innerHTML
;