Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
zewish committed Oct 10, 2016
1 parent 5cf4d41 commit ccbc3b5
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions dist/rmodal.js

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

2 changes: 1 addition & 1 deletion dist/rmodal.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rmodal.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 dist/rmodal.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions index.js

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

2 changes: 1 addition & 1 deletion index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/rmodal.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class RModal {

, escapeClose: true
, content: null
, closingTimeout: 500
, closeTimeout: 500
};

Object.keys(opts || {})
Expand Down Expand Up @@ -116,7 +116,7 @@ class RModal {
this.opened = false;
setTimeout(() => {
this.overlay.style.display = 'none';
}, this.opts.closingTimeout);
}, this.opts.closeTimeout);
}

content(content) {
Expand Down

0 comments on commit ccbc3b5

Please sign in to comment.