Calcul du seuil à dépasser pour charger de nouvelles photos.
authorBenoît Pin <benoit.pin@gmail.com>
Wed, 9 Jul 2014 19:59:35 +0000 (21:59 +0200)
committerBenoît Pin <benoit.pin@gmail.com>
Wed, 9 Jul 2014 19:59:35 +0000 (21:59 +0200)
skins/photo_layout_macros.pt
skins/photo_lightbox_viewer.js

index 1a77be0..6354b1a 100644 (file)
@@ -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;
         </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'));
index 5244a68..0b40288 100644 (file)
@@ -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) {