-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 843 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Widget</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
</head>
<body>
<script type="text/javascript" charset="UTF-8">
var code = 'YOUR_CODE'; // required: replace YOUR_CODE with actual code
var design = '2'; // required: choose from 1 to 2
(function() {
var mlt_widget = document.createElement('script');
mlt_widget.charset = "UTF-8";
mlt_widget.type = 'text/javascript';
mlt_widget.async = true;
mlt_widget.src = 'coverage.js?code='+code+'&design='+design;
mlt_widget.id = 'widget-multitest';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(mlt_widget);
})();
</script>
<div id="widget-multitest-inner"></div>
</body>
</html>