/** * Theme: Velonic Admin Template * Author: Coderthemes * Chat application */ !function($) { "use strict"; var ChatApp = function() { this.$body = $("body"), this.$chatInput = $('.chat-input'), this.$chatList = $('.conversation-list'), this.$chatSendBtn = $('.chat-send .btn') }; //saves chat entry - You should send ajax call to server in order to save chat enrty ChatApp.prototype.save = function() { var chatText = this.$chatInput.val(); var chatTime = moment().format("h:mm"); if (chatText == "") { sweetAlert("Oops...", "You forgot to enter your chat message", "error"); this.$chatInput.focus(); } else { $('
' + chatText + '