This repository was archived by the owner on Apr 15, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 11*** Nivo Lightbox Changelog ***
22
3+ 2016.10.04 - version 1.3.1
4+ * [New] Added Gulpfile and minified JS + CSS
5+ * [Changed] Moved nivo-lightbox.min.js to "dist" folder
6+ * [Fixed] Version header info
7+
382016.10.04 - version 1.3.0
49 * [New] Added `beforePrev` and `beforeNext` callbacks to allow custom transitions
510 * [New] Added `clickImgToClose` setting
Original file line number Diff line number Diff line change 1- /*
2- * Nivo Lightbox v1.2.0
1+ /*!
2+ * Nivo Lightbox v1.3.1
33 * http://dev7studios.com/nivo-lightbox
44 *
55 * Copyright 2013, Dev7studios
Original file line number Diff line number Diff line change 11/*
2- * Nivo Lightbox v1.2.0
2+ * Nivo Lightbox v1.3.1
33 * http://dev7studios.com/nivo-lightbox
44 *
55 * Copyright 2013, Dev7studios
103103 currentLink = galleryItems . eq ( index - 1 ) ;
104104 if ( ! $ ( currentLink ) . length ) currentLink = galleryItems . last ( ) ;
105105 $ . when ( $this . options . beforePrev . call ( this , [ currentLink ] ) ) . done ( function ( ) {
106- $this . processContent ( content , currentLink ) ;
106+ $this . processContent ( content , currentLink ) ;
107107 $this . options . onPrev . call ( this , [ currentLink ] ) ;
108108 } ) ;
109109 } ) ;
115115 currentLink = galleryItems . eq ( index + 1 ) ;
116116 if ( ! $ ( currentLink ) . length ) currentLink = galleryItems . first ( ) ;
117117 $ . when ( $this . options . beforeNext . call ( this , [ currentLink ] ) ) . done ( function ( ) {
118- $this . processContent ( content , currentLink ) ;
118+ $this . processContent ( content , currentLink ) ;
119119 $this . options . onNext . call ( this , [ currentLink ] ) ;
120120 } ) ;
121121 } ) ;
354354 }
355355 } ) ;
356356 }
357-
357+
358358 close . on ( 'click' , function ( e ) {
359359 e . preventDefault ( ) ;
360360 $this . destructLightbox ( ) ;
You can’t perform that action at this time.
0 commit comments