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
|
|
|
|
*/
|
2011-11-26 16:19:34 +00:00
|
|
|
if (typeof TimWolla == 'undefined') var TimWolla = {};
|
|
|
|
if (typeof TimWolla.WCF == 'undefined') TimWolla.WCF = {};
|
2011-11-26 14:17:17 +00:00
|
|
|
|
2011-11-26 16:19:34 +00:00
|
|
|
|
2011-11-26 14:17:17 +00:00
|
|
|
(function ($, document) {
|
2011-11-27 12:13:59 +00:00
|
|
|
TimWolla.WCF.Chat = {
|
2011-11-26 16:19:34 +00:00
|
|
|
init: function(roomID, messageID) {
|
2011-11-27 12:13:59 +00:00
|
|
|
$('.smiley').click(function(event) {
|
|
|
|
alert($(event.target).attr('alt'));
|
|
|
|
});
|
2011-11-26 16:19:34 +00:00
|
|
|
}
|
|
|
|
};
|
2011-11-26 14:17:17 +00:00
|
|
|
})(jQuery, document);
|