Skip to content

Commit

Permalink
Release v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vodkabears committed Jan 11, 2017
1 parent f101594 commit ed63e53
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 1.1.1
* Fix the blurry text issue at animation end
* Fix function getScrollbarWidth
* Fix issue caused by calling remodal.close() when it is already closed

### 1.1.0
* Add `appendTo` option (#238)

Expand Down
14 changes: 13 additions & 1 deletion dist/remodal-default-theme.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Remodal - v1.1.0
* Remodal - v1.1.1
* Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
* http://vodkabears.github.io/remodal/
*
Expand Down Expand Up @@ -206,6 +206,9 @@
transform: none;

opacity: 1;

-webkit-filter: blur(0);
filter: blur(0);
}
}

Expand All @@ -221,6 +224,9 @@
transform: none;

opacity: 1;

-webkit-filter: blur(0);
filter: blur(0);
}
}

Expand All @@ -236,6 +242,9 @@
transform: scale(0.95);

opacity: 0;

-webkit-filter: blur(0);
filter: blur(0);
}
}

Expand All @@ -251,6 +260,9 @@
transform: scale(0.95);

opacity: 0;

-webkit-filter: blur(0);
filter: blur(0);
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/remodal.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Remodal - v1.1.0
* Remodal - v1.1.1
* Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
* http://vodkabears.github.io/remodal/
*
Expand Down
6 changes: 3 additions & 3 deletions dist/remodal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Remodal - v1.1.0
* Remodal - v1.1.1
* Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
* http://vodkabears.github.io/remodal/
*
Expand Down Expand Up @@ -211,7 +211,7 @@
* @returns {Number}
*/
function getScrollbarWidth() {
if ($(document.body).height() <= $(window).height()) {
if ($(document).height() <= $(window).height()) {
return 0;
}

Expand Down Expand Up @@ -639,7 +639,7 @@
var remodal = this;

// Check if the animation was completed
if (remodal.state === STATES.OPENING || remodal.state === STATES.CLOSING) {
if (remodal.state === STATES.OPENING || remodal.state === STATES.CLOSING || remodal.state === STATES.CLOSED) {
return;
}

Expand Down
4 changes: 2 additions & 2 deletions dist/remodal.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": "remodal",
"version": "1.1.0",
"version": "1.1.1",
"description": "Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.",
"keywords": [
"jquery-plugin",
Expand Down
6 changes: 4 additions & 2 deletions src/remodal-default-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,10 @@
}
to {
transform: none;
filter: blur(0);

opacity: 1;

filter: blur(0);
}
}

Expand All @@ -195,9 +196,10 @@
}
to {
transform: scale(0.95);
filter: blur(0);

opacity: 0;

filter: blur(0);
}
}

Expand Down

0 comments on commit ed63e53

Please sign in to comment.