/** * TimWolla.WCF.Chat * * @author Tim Düsterhus * @copyright 2010-2011 Tim Düsterhus * @license Creative Commons Attribution-NonCommercial-ShareAlike * @package timwolla.wcf.chat */ if (typeof TimWolla == 'undefined') var TimWolla = {}; if (typeof TimWolla.WCF == 'undefined') TimWolla.WCF = {}; (function ($, document) { TimWolla.WCF.Chat = { init: function(roomID, messageID) { this.bindEvents(); }, bindEvents: function() { $('.smiley').click(function(event) { alert($(event.target).attr('alt')); }); $(window).bind('beforeunload', function() { return false; }); $('.chatRoom').click($.proxy(function (event) { if (typeof window.history.replaceState != 'undefined') { event.preventDefault(); this.changeRoom($(event.target).attr('href')); } }, this)); }, changeRoom: function(url) { window.history.replaceState({}, '', url); } }; })(jQuery, document);