mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-18 18:33:42 +00:00
11 lines
226 B
JavaScript
11 lines
226 B
JavaScript
/* global tidioChatApi */
|
|
|
|
(function() {
|
|
const chatButton = document.querySelector('.sidebar-button button');
|
|
if (chatButton) {
|
|
chatButton.addEventListener('click', () => {
|
|
tidioChatApi.open();
|
|
});
|
|
}
|
|
})();
|