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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 Clipboard
2 =========
3
4 Many of the steps in this tutorial will be easier to copy and paste
5 into the Dev Environment.
6 To copy and paste in the Dev Environment App,
7 you will need to use the keyboard.
8
9 On your platform use:
10
11 * |copy_key| to Copy
12 * |paste_key| to Paste
13
14 .. |copy_key| raw:: html
15
16 <span id="copy_key">Loading...</span>
17 <script>
18 var tag = document.getElementById('copy_key');
19 if (navigator.appVersion.indexOf('Mac') >= 0) {
20 tag.innerHTML = '&#8984;-C';
21 } else {
22 tag.innerHTML = 'Ctrl-Shift-C';
23 }
24 </script>
25
26 .. |paste_key| raw:: html
27
28 <span id="paste_key">Loading...</span>
29 <script>
30 var tag = document.getElementById('paste_key');
31 if (navigator.appVersion.indexOf('Mac') >= 0) {
32 tag.innerHTML = '&#8984;-V';
33 } else {
34 tag.innerHTML = 'Ctrl-Shift-V';
35 }
36 </script>
OLDNEW
« 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