AdminLTE/dist/js/widgets/direct-chat.js

27 lines
406 B
JavaScript
Executable File

/*!
* AdminLTE 2.0 Direct Chat Plugin
* -------------------------------
* @type plugin
* @usage $('#myDirectChat').directChat(options);
*/
(function ($) {
$.fn.directChat = function (options) {
// Render options
var settings = $.extend({
}, options);
return this.each(function () {
});
function start() {
}
function done() {
}
};
})(jQuery);