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:
Jon Atkins
2013-07-20 19:42:43 +01:00
parent 3e18e5bea1
commit e321b06875
2 changed files with 4 additions and 3 deletions

View File

@ -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());
});
}