Skip to content

Commit 165a18a

Browse files
committed
Version 1.3.2 release
1 parent d808b48 commit 165a18a

13 files changed

+28
-26
lines changed

Gruntfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ module.exports = function(grunt) {
8888
src: 'src/js/<%= pkg.name %>.js',
8989
dest: 'dist/js/<%= pkg.name %>.js',
9090
deps: {
91-
default: ['jquery']
91+
default: ['jquery'],
92+
global: ['jQuery']
9293
}
9394
}
9495
}

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lightgallery",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "A lightweight, customizable, modular, responsive, lightbox gallery plugin for jQuery.",
55
"main": [
66
"dist/js/lightgallery.min.js",

demo/js/lightgallery.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
/*! lightgallery - v1.2.22 - 2016-09-21
1+
/*! lightgallery - v1.3.2 - 2016-09-23
22
* http://sachinchoolur.github.io/lightGallery/
33
* Copyright (c) 2016 Sachin N; Licensed Apache 2.0 */
44

55
(function (root, factory) {
66
if (typeof define === 'function' && define.amd) {
77
// AMD. Register as an anonymous module unless amdModuleId is set
8-
define([], function () {
9-
return (factory());
8+
define(["jquery"], function (a0) {
9+
return (factory(a0));
1010
});
1111
} else if (typeof exports === 'object') {
1212
// Node. Does not work with strict CommonJS, but
1313
// only CommonJS-like environments that support module.exports,
1414
// like Node.
15-
module.exports = factory();
15+
module.exports = factory(require("jquery"));
1616
} else {
17-
factory();
17+
factory(jQuery);
1818
}
19-
}(this, function () {
19+
}(this, function (jquery) {
2020

21-
(function($, window, document, undefined) {
2221

22+
(function(){
2323
'use strict';
2424

2525
var defaults = {
@@ -1331,7 +1331,7 @@
13311331

13321332
$.fn.lightGallery.modules = {};
13331333

1334-
})(jQuery, window, document);
1334+
})();
13351335

13361336

13371337
}));

demo/js/lightgallery.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/lg-fb-comment-box.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/lg-transitions.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/lightgallery.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/lightgallery.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! lightgallery - v1.3.1 - 2016-09-23
1+
/*! lightgallery - v1.3.2 - 2016-09-23
22
* http://sachinchoolur.github.io/lightGallery/
33
* Copyright (c) 2016 Sachin N; Licensed Apache 2.0 */
44

@@ -14,12 +14,12 @@
1414
// like Node.
1515
module.exports = factory(require("jquery"));
1616
} else {
17-
factory(jquery);
17+
factory(jQuery);
1818
}
1919
}(this, function (jquery) {
2020

21-
(function($, window, document, undefined) {
2221

22+
(function(){
2323
'use strict';
2424

2525
var defaults = {
@@ -1331,7 +1331,7 @@
13311331

13321332
$.fn.lightGallery.modules = {};
13331333

1334-
})(jQuery, window, document);
1334+
})();
13351335

13361336

13371337
}));

dist/js/lightgallery.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lightgallery",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "A lightweight, customizable, modular, responsive, lightbox gallery plugin for jQuery.",
55
"keywords": [
66
"jquery-plugin",

0 commit comments

Comments
 (0)