mirror of
https://github.com/Rushilwiz/brancher.git
synced 2025-04-20 20:10:16 -04:00
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
$(document).ready(function() {
|
|
$("#nothing").on("click", function() {
|
|
setText();
|
|
});
|
|
});
|
|
|
|
function setText () {
|
|
$("#nothing-header").text("don't you have anything better to do?");
|
|
}
|