mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-24 06:10:28 +03:00
13 lines
254 B
JavaScript
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')
|
||
|
};
|
||
|
}
|
||
|
});
|