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