Skip to content

Commit

Permalink
Release 1.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
sachinchoolur committed Mar 10, 2018
1 parent 41a8c88 commit 2c95678
Show file tree
Hide file tree
Showing 13 changed files with 35 additions and 31 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
.sass-cache
.idea
.vagrant
.DS_Store
9 changes: 6 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,19 +141,22 @@ module.exports = function(grunt) {
},
gruntfile: {
options: {
jshintrc: '.jshintrc'
jshintrc: '.jshintrc',
reporterOutput: ''
},
src: 'Gruntfile.js'
},
src: {
options: {
jshintrc: 'src/js/.jshintrc'
jshintrc: 'src/js/.jshintrc',
reporterOutput: ''
},
src: ['src/**/*.js']
},
test: {
options: {
jshintrc: 'test/.jshintrc'
jshintrc: 'test/.jshintrc',
reporterOutput: ''
},
src: ['test/**/*.js']
}
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lightgallery",
"version": "1.6.7",
"version": "1.6.8",
"description": "A lightweight, customizable, modular, responsive, lightbox gallery plugin for jQuery.",
"main": [
"dist/js/lightgallery.min.js",
Expand Down
2 changes: 1 addition & 1 deletion dist/css/lg-fb-comment-box.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! lightgallery - v1.6.7 - 2018-02-11
/*! lightgallery - v1.6.8 - 2018-03-10
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2018 Sachin N; Licensed GPLv3 */
.lg-outer.fb-comments .lg-img-wrap, .lg-outer.fb-comments .lg-video-cont {
Expand Down
2 changes: 1 addition & 1 deletion dist/css/lg-transitions.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/lightgallery.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions dist/js/lightgallery-all.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! lightgallery - v1.6.7 - 2018-02-11
/*! lightgallery - v1.6.8 - 2018-03-10
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2018 Sachin N; Licensed GPLv3 */
/*! lightgallery - v1.6.7 - 2018-02-11
/*! lightgallery - v1.6.8 - 2018-03-10
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2018 Sachin N; Licensed GPLv3 */
(function (root, factory) {
Expand All @@ -10,7 +10,7 @@
define(['jquery'], function (a0) {
return (factory(a0));
});
} else if (typeof exports === 'object') {
} else if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
Expand Down Expand Up @@ -2272,23 +2272,23 @@

}));

/*! lg-video - v1.2.0 - 2017-11-16
/*! lg-video - v1.2.1 - 2018-03-08
* http://sachinchoolur.github.io/lightGallery
* Copyright (c) 2017 Sachin N; Licensed GPLv3 */
* Copyright (c) 2018 Sachin N; Licensed GPLv3 */

(function (root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module unless amdModuleId is set
define(['jquery'], function (a0) {
return (factory(a0));
});
} else if (typeof exports === 'object') {
} else if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory(require('jquery'));
} else {
factory(jQuery);
factory(root["jQuery"]);
}
}(this, function ($) {

Expand Down Expand Up @@ -2409,7 +2409,7 @@
a = a + '&' + $.param(this.core.s.vkPlayerParams);
}

video = '<iframe class="lg-video-object lg-vk ' + addClass + '" width="560" height="315" src="http://vk.com/video_ext.php?' + isVideo.vk[1] + a + '" frameborder="0" allowfullscreen></iframe>';
video = '<iframe class="lg-video-object lg-vk ' + addClass + '" width="560" height="315" src="//vk.com/video_ext.php?' + isVideo.vk[1] + a + '" frameborder="0" allowfullscreen></iframe>';

}

Expand Down
6 changes: 3 additions & 3 deletions dist/js/lightgallery-all.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/js/lightgallery.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! lightgallery - v1.6.7 - 2018-02-11
/*! lightgallery - v1.6.8 - 2018-03-10
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2018 Sachin N; Licensed GPLv3 */
(function (root, factory) {
Expand All @@ -7,7 +7,7 @@
define(['jquery'], function (a0) {
return (factory(a0));
});
} else if (typeof exports === 'object') {
} else if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
Expand Down
4 changes: 2 additions & 2 deletions dist/js/lightgallery.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions modules/lg-video.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
/*! lg-video - v1.2.0 - 2017-11-16
/*! lg-video - v1.2.1 - 2018-03-08
* http://sachinchoolur.github.io/lightGallery
* Copyright (c) 2017 Sachin N; Licensed GPLv3 */
* Copyright (c) 2018 Sachin N; Licensed GPLv3 */

(function (root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module unless amdModuleId is set
define(['jquery'], function (a0) {
return (factory(a0));
});
} else if (typeof exports === 'object') {
} else if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory(require('jquery'));
} else {
factory(jQuery);
factory(root["jQuery"]);
}
}(this, function ($) {

Expand Down Expand Up @@ -135,7 +135,7 @@
a = a + '&' + $.param(this.core.s.vkPlayerParams);
}

video = '<iframe class="lg-video-object lg-vk ' + addClass + '" width="560" height="315" src="http://vk.com/video_ext.php?' + isVideo.vk[1] + a + '" frameborder="0" allowfullscreen></iframe>';
video = '<iframe class="lg-video-object lg-vk ' + addClass + '" width="560" height="315" src="//vk.com/video_ext.php?' + isVideo.vk[1] + a + '" frameborder="0" allowfullscreen></iframe>';

}

Expand Down
6 changes: 3 additions & 3 deletions modules/lg-video.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lightgallery",
"version": "1.6.7",
"version": "1.6.8",
"description": "A lightweight, customizable, modular, responsive, lightbox gallery plugin for jQuery.",
"keywords": [
"jquery-plugin",
Expand Down

0 comments on commit 2c95678

Please sign in to comment.