blob: 5cc3c3c19934b12e5ee7d9bf7ea926315d018bbc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/* DirectChat()
* ===============
* Toggles the state of the control sidebar
*
* @Usage: $('#my-chat-box').directChat()
* or add [data-widget="direct-chat"] to the trigger
*/
+function ($) {
'use strict';
var DataKey = 'lte.directchat';
var Selector = {
data: '[data-widget="chat-pane-toggle"]',
box : '.direct-chat'
};
var ClassName = {
open: 'direct-chat-contacts-open'
};
// DirectChat Class Definition
// ===========================
var DirectChat = function (element) {
this.element = element;
};
DirectChat.prototype.toggle = function ($trigger) {
$trigger.parents(Selector.box).first().toggleClass(ClassName.open);
};
// Plugin Definition
// =================
function Plugin(option) {
return this.each(function () {
var $this = $(this);
var data = $this.data(DataKey);
if (!data) {
$this.data(DataKey, (data = new DirectChat($this)));
}
if (typeof option == 'string') data.toggle($this);
});
}
var old = $.fn.directChat;
$.fn.directChat = Plugin;
$.fn.directChat.Constructor = DirectChat;
// No Conflict Mode
// ================
$.fn.directChat.noConflict = function () {
$.fn.directChat = old;
return this;
};
// DirectChat Data API
// ===================
$(document).on('click', Selector.data, function (event) {
if (event) event.preventDefault();
Plugin.call($(this), 'toggle');
});
}(jQuery);
|