projects
/
Portfolio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
f741aec
)
bugfix : ancrage du film toujours en bas.
author
Benoît Pin
<benoit.pin@gmail.com>
Fri, 26 Nov 2010 15:41:54 +0000
(16:41 +0100)
committer
Benoît Pin
<benoit.pin@gmail.com>
Fri, 26 Nov 2010 15:41:54 +0000
(16:41 +0100)
skins/photo_film_viewer.js
patch
|
blob
|
history
diff --git
a/skins/photo_film_viewer.js
b/skins/photo_film_viewer.js
index
70fef4e
..
7adfe9c
100644
(file)
--- a/
skins/photo_film_viewer.js
+++ b/
skins/photo_film_viewer.js
@@
-122,9
+122,10
@@
FilmSlider.prototype.fitToScreen = function(evt) {
FilmSlider.prototype._fitToScreen = function(evt) {
var wh = getWindowHeight();
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 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;
this.stretchable.style.height = newSize + 'px';
var ratio = this.image.height / this.image.width;