From 416df04821b815a2df5c4d0e669d395d095227f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Benoi=CC=82t=20Pin?= <benoit.pin@gmail.com> Date: Wed, 9 Jul 2014 21:59:35 +0200 Subject: [PATCH 1/1] =?utf8?q?Calcul=20du=20seuil=20=C3=A0=20d=C3=A9passer?= =?utf8?q?=20pour=20charger=20de=20nouvelles=20photos.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- skins/photo_layout_macros.pt | 5 +++-- skins/photo_lightbox_viewer.js | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/skins/photo_layout_macros.pt b/skins/photo_layout_macros.pt index 1a77be0..6354b1a 100644 --- a/skins/photo_layout_macros.pt +++ b/skins/photo_layout_macros.pt @@ -11,7 +11,6 @@ mayBeDropable exists:dropable; dropable python:True if mayBeDropable and dropable else False" i18n:domain="portfolio"> - <div metal:use-macro="here/batch_macros/macros/navigation">batch navigation</div> <div id="lightbox" tal:attributes="class python:'lightbox photo-drop-target' if dropable else 'lightbox'"> <span metal:define-macro="thumbnails" tal:repeat="info infos" tal:omit-tag=""> <span tal:define="size info/thumbSize; @@ -102,7 +101,9 @@ </span> </div> <br clear="all"/> - <div metal:use-macro="here/batch_macros/macros/navigation">batch navigation</div> + <noscript> + <div metal:use-macro="here/batch_macros/macros/navigation">batch navigation</div> + </noscript> <script type="text/javascript" tal:condition="not:dropable"> new Lightbox(document.getElementById('lightbox'), document.getElementById('lightbox_toolbar')); diff --git a/skins/photo_lightbox_viewer.js b/skins/photo_lightbox_viewer.js index 5244a68..0b40288 100644 --- a/skins/photo_lightbox_viewer.js +++ b/skins/photo_lightbox_viewer.js @@ -14,6 +14,7 @@ var reSelected = /.*selected.*/; Lightbox = function(grid, toolbar) { var self = this; this.grid = grid; + this.lastSlide = this.grid.children[this.grid.children.length-1]; this.toolbar = toolbar; if (toolbar) { this.toolbarFixed = false; @@ -51,6 +52,9 @@ Lightbox.prototype.windowScrollHandler = function(evt) { this.toolbarFixed = false; this.switchToolBarPositioning(false); } + if (window.scrollY > this.lastSlide.firstElementChild.offsetTop - getWindowHeight()) { + console.log('à boire !'); + } }; Lightbox.prototype.mouseClickHandler = function(evt) { -- 2.20.1