diff --git a/vfeed.js b/vfeed.js new file mode 100644 index 0000000..86e7014 --- /dev/null +++ b/vfeed.js @@ -0,0 +1,17 @@ +var e = document.getElementById("vfeed"); +var f = new net.core("http://caramel-colour.csclub.uwaterloo.ca:8080/singleframe", "rvf"); +function callvfeed() { + f.connect("http://caramel-colour.csclub.uwaterloo.ca:8080/singleframe"); + e.innerHTML = "
" + + "
Connecting...
" + + "

Visual Feed from the Office

"; + + "
Feed 1 | Feed 2 | " + + "X
"; + + "
"; +} + +function stopvfeed() { + e.innerHTML = ""; +} + +document.write("Visual Feed");