Removed trailing comma in jQuery selector when receiving an error from the server

This commit is contained in:
kasimi
2015-12-15 22:43:00 +01:00
parent 7d472b925a
commit 0701ac10c1
2 changed files with 5 additions and 5 deletions

View File

@@ -375,7 +375,7 @@ jQuery(function($) {
}, 500); }, 500);
}, },
error: function() { error: function() {
$("#mChatLoadIMG, #mChatOkIMG, #mChatPauseIMG, #mChatRefreshTextNo, #mChatPauseIMG,").hide(); $("#mChatLoadIMG,#mChatOkIMG,#mChatPauseIMG,#mChatRefreshTextNo").hide();
$("#mChatErrorIMG").show(); $("#mChatErrorIMG").show();
mChat.sound(mChat.forumRoot + "ext/dmzx/mchat/sounds/error.swf"); mChat.sound(mChat.forumRoot + "ext/dmzx/mchat/sounds/error.swf");
}, },

File diff suppressed because one or more lines are too long