jquery update (i expect) broke $(window).on - $(document).on works instead
also changed guess player levels plugin from using jquery .delegate to .on - as the former is deprecated
This commit is contained in:
@ -613,7 +613,7 @@ window.chat.setup = function() {
|
||||
var cls = PLAYER.team === 'ALIENS' ? 'enl' : 'res';
|
||||
$('#chatinput mark').addClass(cls);
|
||||
|
||||
$(window).on('click', '.nickname', function(event) {
|
||||
$(document).on('click', '.nickname', function(event) {
|
||||
window.chat.nicknameClicked(event, $(this).text());
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user