-
Notifications
You must be signed in to change notification settings - Fork 0
/
widgetdev.html
38 lines (36 loc) · 1.19 KB
/
widgetdev.html
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
<html>
<head>
<title>LiveTex Widget Test</title>
</head>
<body>
<!-- {literal} -->
<script type="text/javascript">
// window['liveTex'] = true,
// window['liveTexID'] = 117166,
// window['liveTex_object'] = true;
// (function() {
// var t = document['createElement']('script');
// t.type ='text/javascript';
// t.async = true;
// t.src = '//cs15.livetex.ru/js/client.js';
// var c = document['getElementsByTagName']('script')[0];
// if ( c ) c['parentNode']['insertBefore'](t, c);
// else document['documentElement']['firstChild']['appendChild'](t);
// })();
//liveTexID = 10021582,
liveTexID = 10021417, // 10021417 - [email protected] operator
liveTex_object = true;
LTX_URL = "//widgets-loader.global.livetex/";
(function () {
var lt = document.createElement('script');
lt.type = 'text/javascript';
lt.async = true;
lt.src = LTX_URL + 'js/client.js';
var sc = document.getElementsByTagName('script')[0];
if (sc) sc.parentNode.insertBefore(lt, sc);
else document.documentElement.firstChild.appendChild(lt);
})();
</script>
<!-- {/literal} -->
</body>
</html>