Index: native_client_sdk/src/doc/nacldev/clipboard_web.inc |
diff --git a/native_client_sdk/src/doc/nacldev/clipboard_web.inc b/native_client_sdk/src/doc/nacldev/clipboard_web.inc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e9925c30e846ead44f1583aba77c9d72ef861ca7 |
--- /dev/null |
+++ b/native_client_sdk/src/doc/nacldev/clipboard_web.inc |
@@ -0,0 +1,40 @@ |
+Clipboard |
+========= |
+ |
+Many of the steps in this tutorial will be easier to copy and paste |
+into the Dev Environment. |
+To copy and paste in the Dev Environment web page, |
+you can use the keyboard or the menu options under (|chrome_menu|). |
+ |
+.. |chrome_menu| raw:: html |
+ |
+ ☰ → Edit |
+ |
+On your platform use: |
+ |
+ * |copy_key| to Copy |
+ * |paste_key| to Paste |
+ |
+.. |copy_key| raw:: html |
+ |
+ <span id="copy_key">Loading...</span> |
+ <script> |
+ var tag = document.getElementById('copy_key'); |
+ if (navigator.appVersion.indexOf('Mac') >= 0) { |
+ tag.innerHTML = '⌘-C'; |
+ } else { |
+ tag.innerHTML = 'Ctrl-C'; |
+ } |
+ </script> |
+ |
+.. |paste_key| raw:: html |
+ |
+ <span id="paste_key">Loading...</span> |
+ <script> |
+ var tag = document.getElementById('paste_key'); |
+ if (navigator.appVersion.indexOf('Mac') >= 0) { |
+ tag.innerHTML = '⌘-V'; |
+ } else { |
+ tag.innerHTML = 'Ctrl-V'; |
+ } |
+ </script> |