Skip to content

Commit

Permalink
Release v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vodkabears committed Oct 24, 2015
1 parent 5a9961a commit 08b0f34
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.0.5
* Support special symbols in the 'id' attribute.

### 1.0.4
* Fix IOS 9 safari scaling issues.
* Update dependencies.
Expand Down
2 changes: 1 addition & 1 deletion dist/remodal-default-theme.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Remodal - v1.0.4
* Remodal - v1.0.5
* 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
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.0.4
* Remodal - v1.0.5
* 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
7 changes: 3 additions & 4 deletions dist/remodal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Remodal - v1.0.4
* Remodal - v1.0.5
* 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 @@ -483,8 +483,7 @@
// Catch syntax error if your hash is bad
try {
$elem = $(
'[data-' + PLUGIN_NAME + '-id=' +
id.replace(new RegExp('/', 'g'), '\\/') + ']'
'[data-' + PLUGIN_NAME + '-id="' + id + '"]'
);
} catch (err) {}

Expand Down Expand Up @@ -746,7 +745,7 @@

var elem = e.currentTarget;
var id = elem.getAttribute('data-' + PLUGIN_NAME + '-target');
var $target = $('[data-' + PLUGIN_NAME + '-id=' + id + ']');
var $target = $('[data-' + PLUGIN_NAME + '-id="' + id + '"]');

$[PLUGIN_NAME].lookup[$target.data(PLUGIN_NAME)].open();
});
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.0.4",
"version": "1.0.5",
"description": "Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.",
"keywords": [
"jquery-plugin",
Expand Down

0 comments on commit 08b0f34

Please sign in to comment.