1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| /* global NexT, CONFIG, LivereTower */
|
| document.addEventListener('page:loaded', () => {
| if (!CONFIG.page.comments) return;
|
| NexT.utils.loadComments('#lv-container').then(() => {
| window.livereOptions = {
| refer: CONFIG.page.path.replace(/index\.html$/, '')
| };
|
| if (typeof LivereTower === 'function') return;
|
| NexT.utils.getScript('https://cdn-city.livere.com/js/embed.dist.js', {
| attributes: {
| async: true
| }
| });
| });
| });
|
|