Index: native_client_sdk/src/doc/nacldev/clipboard_app.inc |
diff --git a/native_client_sdk/src/doc/nacldev/clipboard_app.inc b/native_client_sdk/src/doc/nacldev/clipboard_app.inc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e9f4c8186ae047b84902098e848495e493eb5499 |
--- /dev/null |
+++ b/native_client_sdk/src/doc/nacldev/clipboard_app.inc |
@@ -0,0 +1,36 @@ |
+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 App, |
+you will need to use the keyboard. |
+ |
+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-Shift-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-Shift-V'; |
+ } |
+ </script> |