Skip to content

Commit

Permalink
Update v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelodolza committed Oct 30, 2017
1 parent 8252895 commit 8a06f24
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions dist/css/iziToast.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
.iziToast-overlay {
display: block;
position: fixed;
top: 0;
top: -100px;
left: 0;
height: 100%;
width: 100%;
right: 0;
bottom: -100px;
z-index: 997;
}
.iziToast {
Expand Down
2 changes: 1 addition & 1 deletion dist/css/iziToast.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/iziToast.js
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@
$btns[index].addEventListener('click', function (e) {
e.preventDefault();
var ts = value[1];
return new ts(that, $DOM.toast);
return ts(that, $DOM.toast);
});
});
}
Expand Down
2 changes: 1 addition & 1 deletion dist/js/iziToast.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/css/toast.styl
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
.iziToast-overlay
display block
position fixed
top 0
top -100px
left 0
height 100%
width 100%
right 0
bottom -100px
z-index 997

.iziToast
Expand Down
2 changes: 1 addition & 1 deletion src/js/iziToast.js
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@
$btns[index].addEventListener('click', function (e) {
e.preventDefault();
var ts = value[1];
return new ts(that, $DOM.toast);
return ts(that, $DOM.toast);
});
});
}
Expand Down

0 comments on commit 8a06f24

Please sign in to comment.