GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Windows/SystemApps/MicrosoftWindows.Client.CBS_cw5n1h2txyewy/Assets/Dictation/ |
Upload File : |
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <link href="default.css" rel="stylesheet" /> <script language="javascript" type="text/javascript"> function enableDictation(message) { microphoneButton.classList.remove("disabled"); //displayMessage(message); } </script> <script language="javascript" type="text/javascript"> function disableDictation(message) { microphoneButton.classList.add("disabled"); //displayMessage(message); } </script> <script language="javascript" type="text/javascript"> function displayMessage(text) { dictationStatusArea.textContent = text; } </script> <script language="javascript" type="text/javascript"> function getEditedText() { var editedText = document.getElementById("dictationTextArea").textContent; return editedText; } </script> <script language="javascript" type="text/javascript"> function toggleDictation() { if (isHostedInXAMLWebView()) { document.getElementById("dictationTextArea").focus(); window.external.notify("ToggleDictationState"); } } </script> <script language="javascript" type="text/javascript"> function closeDictationPanel() { if (isHostedInXAMLWebView()) { window.external.notify("ExitDictation"); } } </script> <script language="javascript" type="text/javascript"> function isHostedInXAMLWebView() { return (window.external != null) && ('notify' in window.external); } </script> <script language="javascript" type="text/javascript"> window.onload = function() { document.getElementById("dictationTextArea").focus(); }; </script> <script language="javascript" type="text/javascript"> function commitText() { if (isHostedInXAMLWebView()) { window.external.notify("CommitText"); } } </script> </head> <body> <div id="dictationPanel"> <div id="dictationPanelHeader"> <button id="microphoneButton" class="disabled" onclick="toggleDictation()"></button> <button id="closeButton" onclick="closeDictationPanel()"></button> </div> <div id="dictationPanelContent"> <span id="dictationTextArea" contenteditable="true"></span> </div> <div id="dictationPanelFooter"> <span id="dictationStatusArea"></span> <button id="commitButton" onclick="commitText()">Commit</button> </div> </div> </body> </html>