mirror of
https://github.com/Safe-Support-Chat/ocrcc-chatbox
synced 2024-11-01 00:55:26 +00:00
21 lines
874 B
HTML
21 lines
874 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Embeddable Widget documentation</title>
|
|
</head>
|
|
<body>
|
|
<h1>Embeddable Widget documentation</h1>
|
|
<ul>
|
|
<li><a href="./blank.html">Widget on a blank page</a></li>
|
|
<li><a href="./widget.js">Latest version of the widget</a></li>
|
|
<li><a id="bookmarklet">Bookmarklet (Bookmark it for easy use)</a></li>
|
|
<li><a href="./bookmarklet.js">Bookmarklet Code</a></li>
|
|
<script>
|
|
var bookmarklet = "var s= document.createElement('script'); s.setAttribute('src', '"+window.location.href+"bookmarklet.js'); s.setAttribute('crossorigin', 'anonymous'); document.body.appendChild(s);"
|
|
bookmarklet = '(function(){'+ bookmarklet +'})();'
|
|
document.querySelector('a#bookmarklet').setAttribute("href", "javascript:" + encodeURIComponent(bookmarklet));
|
|
</script>
|
|
</ul>
|
|
</body>
|
|
</html>
|