-
Notifications
You must be signed in to change notification settings - Fork 3
/
touch_bookmarklet.js
20 lines (19 loc) · 1 KB
/
touch_bookmarklet.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Add this as your bookmarklet:
// javascript:{var s=document.createElement("script");s.src="https://zalo.github.io/ctrl.js/bookmarklet.js",document.body.appendChild(s);};void(0);
// Execute on a delay in-case the body hasn't been constructed yet...
setTimeout(function() {
// Don't initialize the bookmarklet again if there's already a StatusView
var existingStatusView = document.getElementById("statusView");
if(typeof(existingStatusView) === 'undefined' || existingStatusView === null){
var i, s, ss = [
'https://zalo.github.io/ctrl.js/src/peerjs.min.js',
'https://zalo.github.io/ctrl.js/src/bookmarklet/qrcode.min.js',
'https://zalo.github.io/ctrl.js/src/bookmarklet/touch_injector.js'];
//var i, s, ss = ['/src/peerjs.min.js', '/src/bookmarklet/qrcode.min.js', '/src/bookmarklet/injector.js']; // The local testing version...
for (i = 0; i != ss.length; i++) {
s = document.createElement('script');
s.src = ss[i];
document.body.appendChild(s);
}
}
}, 100);