summaryrefslogtreecommitdiff
path: root/firefoxos/sdremote/index.html
diff options
context:
space:
mode:
authorAndrzej J.R. Hunt <andrzej@ahunt.org>2013-04-11 20:44:54 +0100
committerAndrzej J.R. Hunt <andrzej@ahunt.org>2013-04-11 20:46:16 +0100
commit4fae09f7ed6360dd6c7b4ce2e57166221820d450 (patch)
tree5a13d44fcb4f833dc0392670cd4f2d75fb5abb58 /firefoxos/sdremote/index.html
parent6b3bca32186a59cc3632d3f6eb7f329b739e75b0 (diff)
Complete slideshow control functions.
Change-Id: I093d1a06c6771a22fb804b302d573dbfa72aaf86
Diffstat (limited to 'firefoxos/sdremote/index.html')
-rw-r--r--firefoxos/sdremote/index.html23
1 files changed, 20 insertions, 3 deletions
diff --git a/firefoxos/sdremote/index.html b/firefoxos/sdremote/index.html
index 4d07d6eac458..eaf82f9a81be 100644
--- a/firefoxos/sdremote/index.html
+++ b/firefoxos/sdremote/index.html
@@ -17,13 +17,30 @@
console.info("Hello world");
}
- var mCommunicator;
+ var mClient;
+ var mTransmitter;
</script>
+ <script src="js/client.js"></script>
<script src="js/transmitter.js"></script>
</head>
<body onLoad="init();">
- <button id="open_comm" onclick="mCommunicator = new Communicator('127.0.0.1');">Press to Connect (localhost)</button>
- <button id="transition_next" onclick="if (mCommunicator) mCommunicator.sendMessage('transition_next\n\n');">transition_next</button>
+ <button id="open_comm" onclick="mClient = new Client('127.0.0.1'); mTransmitter = new Transmitter( mClient );">Press to Connect (localhost)</button>
+
+ <br/><br/>
+
+ <button id="startPres" onclick="mTransmitter.startPresentation()">Start Presentation</button>
+ <button id="stopPres" onclick="mTransmitter.stopPresentation()">Stop Presentation</button>
+
+ <br/><br/>
+
+ <button id="next" onclick="mTransmitter.nextTransition()">Next</button>
+ <button id="previous" onclick="mTransmitter.previousTransition()">Previous</button>
+ <br/>
+ <button id="blank" onclick="mTransmitter.blankScreen()">Blank Screen</button>
+ <button id="resume" onclick="mTransmitter.resume()">Resume</button>
+ <br/>
+
+
<p>Current slide: <span id="current slide">---</span></p>
</body>
</html>