mirror of
https://github.com/danbee/scoreboard
synced 2025-03-04 08:59:11 +00:00
11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
var pusher = new Pusher(pusherKey);
|
|
var channel = pusher.subscribe('scores');
|
|
|
|
resetScores = function () {
|
|
$.ajax({method: 'PUT', url: '/reset_scores', data: ''});
|
|
}
|
|
|
|
$(function() {
|
|
$('#reset').on('click', resetScores);
|
|
})
|