[20] | 1 | <html> |
---|
| 2 | <head> |
---|
| 3 | <title>Editor Help</title> |
---|
[352] | 4 | <script type="text/javascript" src="popup.js"></script> |
---|
| 5 | <link rel="stylesheet" type="text/css" href="popup.css" /> |
---|
[20] | 6 | |
---|
[352] | 7 | <script type="text/javascript"> |
---|
[740] | 8 | window.resizeTo(400, 480); |
---|
[649] | 9 | Xinha = window.opener.Xinha; |
---|
[352] | 10 | function Init() { |
---|
[649] | 11 | __dlg_translate('Xinha'); |
---|
[352] | 12 | __dlg_init(); |
---|
[740] | 13 | |
---|
[419] | 14 | } |
---|
[20] | 15 | |
---|
| 16 | |
---|
[352] | 17 | function onCancel() { |
---|
| 18 | __dlg_close(null); |
---|
| 19 | return false; |
---|
[419] | 20 | } |
---|
[20] | 21 | |
---|
[352] | 22 | </script> |
---|
| 23 | </head> |
---|
| 24 | |
---|
| 25 | <body class="dialog" onload="Init()"> |
---|
| 26 | <div class="title">Xinha Help</div> |
---|
| 27 | <table width="100%" style="background: white none repeat scroll 0%;"> |
---|
| 28 | <thead style="border: 1px solid gray; background: silver none repeat scroll 0%;"> |
---|
| 29 | <tr> |
---|
| 30 | <th colspan="2"> |
---|
| 31 | <span style="text-align:center">Keyboard shortcuts</span><br /> |
---|
| 32 | <span>The editor provides the following key combinations:</span> |
---|
| 33 | </th> |
---|
| 34 | </tr> |
---|
| 35 | </thead> |
---|
| 36 | <tbody> |
---|
| 37 | <tr><td>ENTER</td><td><span>new paragraph</span>(<P>)</td></tr> |
---|
| 38 | <tr><td>SHIFT-ENTER</td><td><span>insert linebreak</span>(<BR>)</td></tr> |
---|
| 39 | <tr><td>CTRL-A</td><td><span>Select all</span></td></tr> |
---|
| 40 | <tr><td>CTRL-B</td><td><span>Bold</span></td></tr> |
---|
| 41 | <tr><td>CTRL-I</td><td><span>Italic</span></td></tr> |
---|
| 42 | <tr><td>CTRL-U</td><td><span>Underline</span></td></tr> |
---|
| 43 | <tr><td>CTRL-S</td><td><span>Strikethrough</span></td></tr> |
---|
| 44 | <tr><td>CTRL-L</td><td><span>Justify Left</span></td></tr> |
---|
| 45 | <tr><td>CTRL-E</td><td><span>Justify Center</span></td></tr> |
---|
| 46 | <tr><td>CTRL-R</td><td><span>Justify Right</span></td></tr> |
---|
| 47 | <tr><td>CTRL-J</td><td><span>Justify Full</span></td></tr> |
---|
| 48 | <tr><td>CTRL-Z</td><td><span>Undoes your last action</span></td></tr> |
---|
| 49 | <tr><td>CTRL-Y</td><td><span>Redoes your last action</span></td></tr> |
---|
| 50 | <tr><td>CTRL-N</td><td><span>Set format to paragraph</span></td></tr> |
---|
| 51 | <tr><td>CTRL-0 (zero)</td><td><span>Clean content pasted from Word</span></td></tr> |
---|
| 52 | <tr><td>CTRL-1 .. CTRL-6</td><td><span>Headings</span> (<h1> .. <h6>)</td></tr> |
---|
| 53 | <tr><td>CTRL-X</td><td><span>Cut selection</span></td></tr> |
---|
| 54 | <tr><td>CTRL-C</td><td><span>Copy selection</span></td></tr> |
---|
| 55 | <tr><td>CTRL-V</td><td><span>Paste from clipboard</span></td></tr> |
---|
| 56 | </tbody> |
---|
| 57 | </table> |
---|
| 58 | <div id="buttons"> |
---|
| 59 | <button type="button" name="cancel" onclick="return onCancel();">Close</button> |
---|
| 60 | </div> |
---|
[20] | 61 | </body> |
---|
[1] | 62 | </html> |
---|