diff --git a/index.html b/index.html index 7fc3b06..9d8f2a1 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,6 @@ -

Moonlight Streaming

Chrome App Status: NO-STATUS

@@ -50,4 +49,3 @@
- diff --git a/index.js b/index.js index d481ca0..2dfcda9 100644 --- a/index.js +++ b/index.js @@ -24,12 +24,13 @@ function hideAllWorkflowDivs() { // pair button was pushed. pass what the user entered into the GFEHostIPField. function pairPushed() { - common.naclModule.postMessage('pair:' + document.getElementById('GFEHostIPField').value); + // common.naclModule.postMessage('pair:' + document.getElementById('GFEHostIPField').value); } // someone pushed the "show apps" button. // if they entered something in the GFEHostIPField, use that. // otherwise, we assume they selected from the host history dropdown. +// TODO: pass the host info to the appChoose screen function showAppsPushed() { var target = document.getElementById('GFEHostIPField').value; if (target == null || target == "127.0.0.1") { @@ -74,6 +75,4 @@ function stopPushed() { function handleMessage(msg) { var logEl = document.getElementById('logField'); logEl.innerHTML = msg.data; -} - -// window.onload = hideAllWorkflowDivs; +} \ No newline at end of file