8 lines
221 B
JavaScript
8 lines
221 B
JavaScript
$( document ).ready(function() {
|
|
$( ".start" ).click(function() {
|
|
$( ".start" ).html('<span class="glyphicon glyphicon-dashboard" aria-hidden="true"></span> Running...');
|
|
newNeat();
|
|
loop();
|
|
});
|
|
});
|