-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b04a994
commit 2c372a2
Showing
4 changed files
with
141 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* DirectChat() | ||
* =============== | ||
* Toggles the state of the control sidebar | ||
* | ||
* @Usage: $('#my-chat-box').directChat(options) | ||
* or add [data-widget="direct-chat"] to the trigger | ||
* Pass any option as data-option="value" | ||
*/ | ||
+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 () { | ||
var box = $(this).parents(Selector.box).first(); | ||
box.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() | ||
}) | ||
} | ||
|
||
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.