projects
/
ckeditor.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
7e9dcb2
)
bugfixes et cosmétique.
author
Benoît Pin
<pin@cri.ensmp.fr>
Thu, 10 Apr 2014 09:49:49 +0000
(11:49 +0200)
committer
Benoît Pin
<pin@cri.ensmp.fr>
Thu, 10 Apr 2014 09:49:49 +0000
(11:49 +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
695d114
..
3e2606c
100644
(file)
--- a/
skins/ckeditor/plugins/plinn_image/plugin.js
+++ b/
skins/ckeditor/plugins/plinn_image/plugin.js
@@
-82,18
+82,25
@@
PlinnCKDDUploader.prototype.createImageProxy = function(file) {
img.setAttribute('height', 290);
img.setStyle('opacity', 0.2);
img.setAttribute('src', 'no_image.jpg');
img.setAttribute('height', 290);
img.setStyle('opacity', 0.2);
img.setAttribute('src', 'no_image.jpg');
+ img.placeholder = true;
var size = this.thumbnailSize;
var size = this.thumbnailSize;
+ var self = this;
img.on('load', function(e) {
img.on('load', function(e) {
- var img$ = img.$;
- if (img$.width > img$.height) { // landscape
- img$.height = Math.round(size * img$.height / img$.width);
+ if (e.sender.placeholder) {
+ e.sender.placeholder = false;
+ return;
+ };
+ var img$ = e.data.$.target;
+ if (img$.naturalWidth > img$.naturalHeight) { // landscape
+ img$.height = Math.round(size * img$.naturalHeight / img$.naturalWidth);
img$.width = size;
}
else {
img$.width = size;
}
else {
- img$.width = Math.round(size * img$.
width / img$.h
eight);
+ img$.width = Math.round(size * img$.
naturalWidth / img$.naturalH
eight);
img$.height = size;
}
img$.height = size;
}
+ self.progressBarMaxSize = img$.width;
img$.style.opacity = 0.2;
});
img$.style.opacity = 0.2;
});
@@
-184,6
+191,8
@@
PlinnCKDDUploader.prototype.uploadCompleteHandlerCB = function(req) {
img.setAttribute('width', data.getAttribute('width'));
img.setAttribute('height', data.getAttribute('height'));
img.replace(item.container);
img.setAttribute('width', data.getAttribute('width'));
img.setAttribute('height', data.getAttribute('height'));
img.replace(item.container);
+ this.previewsLoaded--;
+ this.previewQueueLoadNext();
break;
}
};
break;
}
};
@@
-272,7
+281,6
@@
PlinnCKDDUploader.prototype.previewUploadedImage = function(proxy) {
reader.onload = function(evt) {
proxy.img.setAttribute('src', evt.target.result);
reader.onload = function(evt) {
proxy.img.setAttribute('src', evt.target.result);
- // proxy.img.src = evt.target.result;
setTimeout(function(){self.previewQueueLoadNext();}, 500);
};
reader.readAsDataURL(proxy.file);
setTimeout(function(){self.previewQueueLoadNext();}, 500);
};
reader.readAsDataURL(proxy.file);