Skip to content
This repository was archived by the owner on Apr 15, 2021. It is now read-only.

Commit 047786c

Browse files
committed
v1.3.1
1 parent 0d15b1e commit 047786c

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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+
38
2016.10.04 - version 1.3.0
49
* [New] Added `beforePrev` and `beforeNext` callbacks to allow custom transitions
510
* [New] Added `clickImgToClose` setting

nivo-lightbox.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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

nivo-lightbox.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Nivo Lightbox v1.2.0
2+
* Nivo Lightbox v1.3.1
33
* http://dev7studios.com/nivo-lightbox
44
*
55
* Copyright 2013, Dev7studios
@@ -103,7 +103,7 @@
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
});
@@ -115,7 +115,7 @@
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
});
@@ -354,7 +354,7 @@
354354
}
355355
});
356356
}
357-
357+
358358
close.on('click', function(e){
359359
e.preventDefault();
360360
$this.destructLightbox();

0 commit comments

Comments
 (0)