Skip to content

Commit

Permalink
Version 1.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sachinchoolur committed Sep 19, 2020
1 parent ee24b48 commit 2ff4ca4
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lightgallery.js",
"version": "1.3.0",
"version": "1.3.1",
"description": "Full featured lightbox gallery. Zero dependencies",
"main": [
"dist/js/lightgallery.min.js",
Expand Down
10 changes: 5 additions & 5 deletions demo/js/lg-rotate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* lg-rotate.js | 1.0.0 | September 1st 2020
* lg-rotate.js | 1.1.0 | September 19th 2020
* http://sachinchoolur.github.io/lg-rotate.js
* Copyright (c) 2016 Sachin N;
* @license GPLv3
Expand Down Expand Up @@ -55,12 +55,12 @@

Rotate.prototype.buildTemplates = function () {
var rotateIcons = '';
if (this.core.s.flipHorizontal) {
rotateIcons += '<button aria-label="Flip horizontal" class="lg-flip-hor lg-icon"></button>';
}
if (this.core.s.flipVertical) {
rotateIcons += '<button aria-label="flip vertical" class="lg-flip-ver lg-icon"></button>';
}
if (this.core.s.flipHorizontal) {
rotateIcons += '<button aria-label="Flip horizontal" class="lg-flip-hor lg-icon"></button>';
}
if (this.core.s.rotateLeft) {
rotateIcons += '<button aria-label="Rotate left" class="lg-rotate-left lg-icon"></button>';
}
Expand Down Expand Up @@ -104,7 +104,7 @@

Rotate.prototype.applyStyles = function () {
var image = this.core.___slide[this.core.index].querySelector('.lg-img-rotate');
utils.setVendor(image, 'Transform', 'rotate(' + this.rotateValuesList[this.core.index].rotate + 'deg)' + ' scale3d(' + this.rotateValuesList[this.core.index].flipVertical + ', ' + this.rotateValuesList[this.core.index].flipHorizontal + ', 1)');
utils.setVendor(image, 'Transform', 'rotate(' + this.rotateValuesList[this.core.index].rotate + 'deg)' + ' scale3d(' + this.rotateValuesList[this.core.index].flipHorizontal + ', ' + this.rotateValuesList[this.core.index].flipVertical + ', 1)');
};

Rotate.prototype.rotateLeft = function () {
Expand Down
4 changes: 2 additions & 2 deletions demo/js/lg-rotate.min.js

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

6 changes: 2 additions & 4 deletions dist/css/lightgallery.css
Original file line number Diff line number Diff line change
Expand Up @@ -878,11 +878,11 @@ body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object
}

.lg-flip-hor:after {
content: "\e903";
content: "\e902";
}

.lg-flip-ver:after {
content: "\e902";
content: "\e903";
}

.group {
Expand Down Expand Up @@ -1151,5 +1151,3 @@ body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object
-o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

/*# sourceMappingURL=lightgallery.css.map */
2 changes: 1 addition & 1 deletion dist/css/lightgallery.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/lightgallery.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* lightgallery.js | 1.3.0 | September 1st 2020
* lightgallery.js | 1.3.1 | September 19th 2020
* http://sachinchoolur.github.io/lightgallery.js/
* Copyright (c) 2016 Sachin N;
* @license GPLv3
Expand Down
2 changes: 1 addition & 1 deletion dist/js/lightgallery.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.js",
"version": "1.3.0",
"version": "1.3.1",
"description": "Full featured lightbox gallery. Zero dependencies",
"keywords": [
"gallery",
Expand Down

0 comments on commit 2ff4ca4

Please sign in to comment.