i18n/src/messenger/webim/js/source/soundcheck.js
2011-02-27 01:54:27 +01:00

13 lines
254 B
JavaScript

Behaviour.register({
'a#check-nv' : function(el) {
el.onclick = function() {
playSound(wroot + '/sounds/new_user.wav');
};
},
'a#check-nm' : function(el) {
el.onclick = function() {
playSound(wroot + '/sounds/new_message.wav')
};
}
});