Skip to content

Commit

Permalink
ax5mask 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasJang committed Mar 20, 2016
1 parent c65129e commit 235eac5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ax5ui-mask",
"version": "0.6.0",
"version": "0.6.1",
"authors": [
"ThomasJ <[email protected]>"
],
Expand Down
2 changes: 2 additions & 0 deletions dist/ax5mask.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
}
if (config.onStateChanged) {
that = {
self: this,
state: "open"
};
config.onStateChanged.call(that, that);
Expand All @@ -162,6 +163,7 @@
this.$target.removeClass("ax-masking");
if (config && config.onStateChanged) {
that = {
self: this,
state: "close"
};
config.onStateChanged.call(that, that);
Expand Down
2 changes: 1 addition & 1 deletion dist/ax5mask.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": "ax5ui-mask",
"version": "0.6.0",
"version": "0.6.1",
"description": "A mask plugin that works with Bootstrap & jQuery",
"license": "MIT",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions src/ax5mask.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@
}
if (config.onStateChanged) {
that = {
self: this,
state: "open"
};
config.onStateChanged.call(that, that);
Expand All @@ -156,6 +157,7 @@
this.$target.removeClass("ax-masking");
if (config && config.onStateChanged) {
that = {
self: this,
state: "close"
};
config.onStateChanged.call(that, that);
Expand Down

0 comments on commit 235eac5

Please sign in to comment.