/home/aqcert/public_html/admin/dash/js
NameSizeModeActions
bootstrap.js688900644editdlrm
bootstrap.min.js368160644editdlrm
jquery-ui-1.10.1.custom.min.js2281470644editdlrm
jquery.app.js120650644editdlrm
jquery.chat.js19880644editdlrm
jquery.dashboard.js41400644editdlrm
jquery.min.js957860644editdlrm
jquery.nicescroll.js593640644editdlrm
jquery.scrollTo.min.js24340644editdlrm
jquery.todo.js51370644editdlrm
jquery.validate.min.js230730644editdlrm
modernizr.min.js151530644editdlrm
npm.js4840644editdlrm
skycons.min.js80970644editdlrm
tinymce.js10370644editdlrm
waves.js694630644editdlrm
wow.min.js47770644editdlrm
Edit: /home/aqcert/public_html/admin/dash/js/jquery.chat.js (1988B)
/** * 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 { $('
  • male' + chatTime + '
    John Deo

    ' + chatText + '

  • ').appendTo('.conversation-list'); this.$chatInput.val(''); this.$chatInput.focus(); this.$chatList.scrollTo('100%', '100%', { easing: 'swing' }); } }, ChatApp.prototype.init = function () { var $this = this; //binding keypress event on chat input box - on enter we are adding the chat into chat list - $this.$chatInput.keypress(function (ev) { var p = ev.which; if (p == 13) { $this.save(); return false; } }); //binding send button click $this.$chatSendBtn.click(function (ev) { $this.save(); return false; }); }, //init ChatApp $.ChatApp = new ChatApp, $.ChatApp.Constructor = ChatApp }(window.jQuery), //initializing main application module function($) { "use strict"; $.ChatApp.init(); }(window.jQuery);