Skip to content

Commit ed63e53

Browse files
committed
Release v1.1.1
1 parent f101594 commit ed63e53

File tree

7 files changed

+29
-10
lines changed

7 files changed

+29
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 1.1.1
2+
* Fix the blurry text issue at animation end
3+
* Fix function getScrollbarWidth
4+
* Fix issue caused by calling remodal.close() when it is already closed
5+
16
### 1.1.0
27
* Add `appendTo` option (#238)
38

dist/remodal-default-theme.css

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Remodal - v1.1.0
2+
* Remodal - v1.1.1
33
* Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
44
* http://vodkabears.github.io/remodal/
55
*
@@ -206,6 +206,9 @@
206206
transform: none;
207207

208208
opacity: 1;
209+
210+
-webkit-filter: blur(0);
211+
filter: blur(0);
209212
}
210213
}
211214

@@ -221,6 +224,9 @@
221224
transform: none;
222225

223226
opacity: 1;
227+
228+
-webkit-filter: blur(0);
229+
filter: blur(0);
224230
}
225231
}
226232

@@ -236,6 +242,9 @@
236242
transform: scale(0.95);
237243

238244
opacity: 0;
245+
246+
-webkit-filter: blur(0);
247+
filter: blur(0);
239248
}
240249
}
241250

@@ -251,6 +260,9 @@
251260
transform: scale(0.95);
252261

253262
opacity: 0;
263+
264+
-webkit-filter: blur(0);
265+
filter: blur(0);
254266
}
255267
}
256268

dist/remodal.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Remodal - v1.1.0
2+
* Remodal - v1.1.1
33
* Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
44
* http://vodkabears.github.io/remodal/
55
*

dist/remodal.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Remodal - v1.1.0
2+
* Remodal - v1.1.1
33
* Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
44
* http://vodkabears.github.io/remodal/
55
*
@@ -211,7 +211,7 @@
211211
* @returns {Number}
212212
*/
213213
function getScrollbarWidth() {
214-
if ($(document.body).height() <= $(window).height()) {
214+
if ($(document).height() <= $(window).height()) {
215215
return 0;
216216
}
217217

@@ -639,7 +639,7 @@
639639
var remodal = this;
640640

641641
// Check if the animation was completed
642-
if (remodal.state === STATES.OPENING || remodal.state === STATES.CLOSING) {
642+
if (remodal.state === STATES.OPENING || remodal.state === STATES.CLOSING || remodal.state === STATES.CLOSED) {
643643
return;
644644
}
645645

dist/remodal.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": "remodal",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.",
55
"keywords": [
66
"jquery-plugin",

src/remodal-default-theme.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,10 @@
181181
}
182182
to {
183183
transform: none;
184-
filter: blur(0);
185184

186185
opacity: 1;
186+
187+
filter: blur(0);
187188
}
188189
}
189190

@@ -195,9 +196,10 @@
195196
}
196197
to {
197198
transform: scale(0.95);
198-
filter: blur(0);
199199

200200
opacity: 0;
201+
202+
filter: blur(0);
201203
}
202204
}
203205

0 commit comments

Comments
 (0)