i18n/src/messenger/webim/js/source/soundcheck.js

13 lines
254 B
JavaScript
Raw Normal View History

2011-02-27 03:54:27 +03:00
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')
};
}
});