]> CRI, Mines Paris - PSL - Portfolio.git/commitdiff
bugfix : ancrage du film toujours en bas.
authorBenoît Pin <benoit.pin@gmail.com>
Fri, 26 Nov 2010 15:41:54 +0000 (16:41 +0100)
committerBenoît Pin <benoit.pin@gmail.com>
Fri, 26 Nov 2010 15:41:54 +0000 (16:41 +0100)
skins/photo_film_viewer.js

index 70fef4e51936bf7371fb34f6868147d7279775e5..7adfe9c814b1e7ec70df611bdb050e2da9856510 100644 (file)
@@ -122,9 +122,10 @@ FilmSlider.prototype.fitToScreen = function(evt) {
 
 FilmSlider.prototype._fitToScreen = function(evt) {
        var wh = getWindowHeight();
-       var ch = document.body.clientHeight;
+       var rb = getObjectTop(this.rail) + getObjectHeight(this.rail); // rail bottom
+       var delta = wh - rb
        var sh = getObjectHeight(this.stretchable);
-       var newSize = sh + wh - ch;
+       var newSize = sh + delta;
        this.stretchable.style.height = newSize + 'px';
        
        var ratio = this.image.height / this.image.width;