remove unused JavaScript files
This commit is contained in:
parent
d3e54c31c0
commit
00fe33323f
1 changed files with 0 additions and 20 deletions
|
@ -1,20 +0,0 @@
|
|||
/**
|
||||
* Notification functions.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Play notification, if audio-element is present.
|
||||
*/
|
||||
function notify()
|
||||
{
|
||||
var notifySound = $("#notify-sound");
|
||||
if(notifySound.length > 0) {
|
||||
notifySound.get(0).volume = 0.5;
|
||||
notifySound.get(0).play();
|
||||
}
|
||||
}
|
||||
|
||||
$(function() {
|
||||
// Play notification
|
||||
notify();
|
||||
});
|
Loading…
Add table
Reference in a new issue