Skip to content

Commit

Permalink
Update build.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Chen authored Mar 14, 2021
1 parent 3085dac commit 2aa4e3b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions start/build.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
/*!
* BWB (http://bwb.js.org)
* Copyright (c) 2021 bwb.js.org
* Licensed under MIT (https://github.com/shbwb/bwb/blob/main/LICENSE)
*/
/*! build.js | MIT License */
function snackbar() {
var x = document.getElementById("snackbar")
x.className = "show";
setTimeout(function(){ x.className = x.className.replace("show", ""); }, 3000);
}
function timer() {
setTimeout(function() {alert(text)},time)
}

0 comments on commit 2aa4e3b

Please sign in to comment.