Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(560)

Unified Diff: native_client_sdk/src/doc/nacldev/clipboard_app.inc

Issue 731453002: Adding two codelabs for cds2014. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 = '&#8984;-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 = '&#8984;-V';
+ } else {
+ tag.innerHTML = 'Ctrl-Shift-V';
+ }
+ </script>
« no previous file with comments | « native_client_sdk/src/doc/nacldev/cleanup_web.inc ('k') | native_client_sdk/src/doc/nacldev/clipboard_web.inc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698