One Hat Cyber Team
Your IP :
216.73.216.155
Server IP :
122.155.17.190
Server :
Linux cat17190.thaihostserver.com 5.10.0-21-amd64 #1 SMP Debian 5.10.162-1 (2023-01-21) x86_64
Server Software :
Apache/2
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
neunkho
/
public_html
/
hpp
/
build
/
js
/
Edit File:
DirectChat.js
/** * -------------------------------------------- * AdminLTE DirectChat.js * License MIT * -------------------------------------------- */ const DirectChat = (($) => { /** * Constants * ==================================================== */ const NAME = 'DirectChat' const DATA_KEY = 'lte.directchat' const EVENT_KEY = `.${DATA_KEY}` const JQUERY_NO_CONFLICT = $.fn[NAME] const DATA_API_KEY = '.data-api' const Event = { TOGGLED: `toggled{EVENT_KEY}` } const Selector = { DATA_TOGGLE: '[data-widget="chat-pane-toggle"]', DIRECT_CHAT: '.direct-chat' }; const ClassName = { DIRECT_CHAT_OPEN: 'direct-chat-contacts-open' }; /** * Class Definition * ==================================================== */ class DirectChat { constructor(element, config) { this._element = element } toggle() { $(this._element).parents(Selector.DIRECT_CHAT).first().toggleClass(ClassName.DIRECT_CHAT_OPEN); const toggledEvent = $.Event(Event.TOGGLED) $(this._element).trigger(toggledEvent) } // Static static _jQueryInterface(config) { return this.each(function () { let data = $(this).data(DATA_KEY) if (!data) { data = new DirectChat($(this)) $(this).data(DATA_KEY, data) } data[config]() }) } } /** * * Data Api implementation * ==================================================== */ $(document).on('click', Selector.DATA_TOGGLE, function (event) { if (event) event.preventDefault(); DirectChat._jQueryInterface.call($(this), 'toggle'); }); /** * jQuery API * ==================================================== */ $.fn[NAME] = DirectChat._jQueryInterface $.fn[NAME].Constructor = DirectChat $.fn[NAME].noConflict = function () { $.fn[NAME] = JQUERY_NO_CONFLICT return DirectChat._jQueryInterface } return DirectChat })(jQuery) export default DirectChat
Simpan