Skip to content

Commit

Permalink
add vconsole
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyujulin committed Sep 3, 2024
1 parent 7095b97 commit 2c522da
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion examples/2.click_to_call_phone/phone.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,16 @@
</head>

<body onload="documentIsReady()">
<script src="https://cdn.bootcss.com/vConsole/3.3.4/vconsole.min.js"></script>

<!-- Check that browser is not IE -->
<script>
var ua = window.navigator.userAgent;
if (ua.indexOf('MSIE ') > 0 || ua.indexOf('Trident/') > 0) {
alert("Internet Explorer is not supported. Please use Chrome or Firefox");
}

var vConsole = new VConsole();
</script>

<script src="../../js/ac_webrtc.min.js"></script>
Expand Down Expand Up @@ -67,4 +71,4 @@
</div>
</body>

</html>
</html>

0 comments on commit 2c522da

Please sign in to comment.