Skip to content

Commit

Permalink
chore(core): build release
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Nov 5, 2018
1 parent 509dd8d commit 622e5fb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions dist/snackbar.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Snackbar v0.1.12
* Snackbar v0.1.14
* http://polonel.com/Snackbar
*
* Copyright 2018 Chris Brame and other contributors
Expand Down Expand Up @@ -80,8 +80,7 @@
var secondButton = document.createElement('button');
secondButton.className = 'action';
secondButton.innerHTML = options.secondButtonText;
secondButton.innerHTML = options.secondButtonAria;
secondButton.setAttribute('aria-label', secondButtonAria);
secondButton.setAttribute('aria-label', options.secondButtonAria);
secondButton.style.color = options.secondButtonTextColor;
secondButton.addEventListener('click', function() {
options.onSecondButtonClick(Snackbar.snackbar);
Expand Down
4 changes: 2 additions & 2 deletions dist/snackbar.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/snackbar.min.js.map

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": "node-snackbar",
"version": "0.1.13",
"version": "0.1.14",
"description": "Notifications insipired by Google Material Design",
"main": "src/js/snackbar.js",
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/js/snackbar.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Snackbar v0.1.13
* Snackbar v0.1.14
* http://polonel.com/Snackbar
*
* Copyright 2018 Chris Brame and other contributors
Expand Down Expand Up @@ -80,7 +80,7 @@
var secondButton = document.createElement('button');
secondButton.className = 'action';
secondButton.innerHTML = options.secondButtonText;
secondButton.setAttribute('aria-label', options.secondButtonAria)
secondButton.setAttribute('aria-label', options.secondButtonAria);
secondButton.style.color = options.secondButtonTextColor;
secondButton.addEventListener('click', function() {
options.onSecondButtonClick(Snackbar.snackbar);
Expand Down

0 comments on commit 622e5fb

Please sign in to comment.