1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-10-31 14:10:08 +00:00
Tims-Chat/file/js/TimWolla.WCF.Chat.js
Tim Düsterhus c28b0a3067 Alert smiley-code on click.
Will be replaced with inserting into input lateron.
2011-11-27 13:13:59 +01:00

21 lines
575 B
JavaScript

/**
* 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 = {};
(function ($, document) {
TimWolla.WCF.Chat = {
init: function(roomID, messageID) {
$('.smiley').click(function(event) {
alert($(event.target).attr('alt'));
});
}
};
})(jQuery, document);