projects
/
Portfolio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
9d15a21
)
Effacement de la sélection quand le déplacement est effectif (validé par le serveur).
author
Benoît Pin
<pin@cri.ensmp.fr>
Thu, 9 Oct 2014 16:18:41 +0000
(18:18 +0200)
committer
Benoît Pin
<pin@cri.ensmp.fr>
Thu, 9 Oct 2014 16:18:41 +0000
(18:18 +0200)
skins/photo_lightbox_viewer.js
patch
|
blob
|
history
diff --git
a/skins/photo_lightbox_viewer.js
b/skins/photo_lightbox_viewer.js
index
3c69aec
..
97c7f79
100644
(file)
--- a/
skins/photo_lightbox_viewer.js
+++ b/
skins/photo_lightbox_viewer.js
@@
-542,15
+542,18
@@
Lightbox.prototype.moveSelectedPhotos = function() {
};
Lightbox.prototype._moveSelectedPhotos = function(req) {
};
Lightbox.prototype._moveSelectedPhotos = function(req) {
- var i, slide;
+ var i, slide
, cb
;
if (req.status === 200) {
var doc = req.responseXML.documentElement;
if (doc.nodeName === 'ok') {
if (req.status === 200) {
var doc = req.responseXML.documentElement;
if (doc.nodeName === 'ok') {
- this.pendingMovedSlides = undefined;
for(i=0 ; i<this.draggedSelection.length ; i++) {
slide = this.draggedSelection[i];
this.grid.removeChild(slide);
for(i=0 ; i<this.draggedSelection.length ; i++) {
slide = this.draggedSelection[i];
this.grid.removeChild(slide);
+ cb = this.pendingMovedSlides[i].getElementsByTagName('input')[0]
+ cb.checked = false;
+ cb.removeAttribute('checked');
}
}
+ this.pendingMovedSlides = undefined;
this.cbIndex = undefined;
return;
}
this.cbIndex = undefined;
return;
}