questlab/www/js/notification.js
2015-05-13 16:38:36 +02:00

19 lines
281 B
JavaScript

/**
* Notification functions.
*/
/**
* Play notification, if audio-element is present.
*/
function notify()
{
var notifySound = $("#notify-sound");
if(notifySound) {
notifySound.get(0).play();
}
}
$(function() {
// Play notification
notify();
});