mirror of https://github.com/ColorlibHQ/AdminLTE
27 lines
406 B
JavaScript
27 lines
406 B
JavaScript
|
/*!
|
||
|
* 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);
|