1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/js/TimWolla.WCF.Chat.js

50 lines
1.4 KiB
JavaScript
Raw Normal View History

2011-11-26 14:17:17 +00:00
/**
* TimWolla.WCF.Chat
*
* @author Tim Düsterhus
* @copyright 2010-2011 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package timwolla.wcf.chat
*/
if (typeof TimWolla == 'undefined') var TimWolla = {};
if (typeof TimWolla.WCF == 'undefined') TimWolla.WCF = {};
2011-11-26 14:17:17 +00:00
2011-11-26 14:17:17 +00:00
(function ($, document) {
TimWolla.WCF.Chat = {
init: function(roomID, messageID) {
2011-12-02 22:16:55 +00:00
this.bindEvents();
},
bindEvents: function() {
$('.smiley').click(function(event) {
alert($(event.target).attr('alt'));
});
2011-12-02 22:16:55 +00:00
$(window).bind('beforeunload', function() {
return false;
});
2011-12-03 14:01:54 +00:00
$('.chatRoom').click($.proxy(function (event) {
if (typeof window.history.replaceState != 'undefined') {
event.preventDefault();
this.changeRoom($(event.target));
2011-12-03 14:01:54 +00:00
}
}, this));
},
changeRoom: function(target) {
window.history.replaceState({}, '', target.attr('href'));
$('.activeMenuItem .chatRoom').parent().removeClass('activeMenuItem');
target.parent().addClass('activeMenuItem');
2011-12-03 16:37:20 +00:00
$.ajax(target.attr('href'), {
dataType: 'json',
data: { ajax: 1 },
type: 'POST',
success: function (data, textStatus, jqXHR) {
$('#topic').text(data.topic);
if (data.topic == '') $('#topic').hide();
else $('#topic').show();
}
});
}
};
2011-11-26 14:17:17 +00:00
})(jQuery, document);