annotate static/js/tiny_mce/themes/advanced/shortcuts.htm @ 693:ad69236e8501

For issue #52, update many 3rd party Javascript libraries. Updated to jquery 1.10.2, jquery ui 1.10.3. This broke a lot of stuff. - Found a newer version of the jquery cycle all plugin (3.0.3). - Updated JPlayer to 2.4.0. - Updated to MarkItUp 1.1.14. This also required me to add multiline attributes set to true on various buttons in the markdown set. - As per a stackoverflow post, added some code to get multiline titles in a jQuery UI dialog. They removed that functionality but allow you to put it back. Tweaked the MarkItUp preview CSS to show blockquotes in italic. Did not update TinyMCE at this time. I'm not using the JQuery version and this version appears to work ok for now. What I should do is make a repo for MarkItUp and do a vendor branch thing so I don't have to futz around diffing directories to figure out if I'll lose changes when I update.
author Brian Neal <bgneal@gmail.com>
date Wed, 04 Sep 2013 19:55:20 -0500
parents 6c182ceb7147
children
rev   line source
bgneal@442 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
bgneal@442 2 <html xmlns="http://www.w3.org/1999/xhtml">
bgneal@442 3 <head>
bgneal@442 4 <title>{#advanced_dlg.accessibility_help}</title>
bgneal@442 5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@442 6 <script type="text/javascript">tinyMCEPopup.requireLangPack();</script>
bgneal@442 7 </head>
bgneal@442 8 <body id="content">
bgneal@442 9 <h1>{#advanced_dlg.accessibility_usage_title}</h1>
bgneal@442 10 <h2>Toolbars</h2>
bgneal@442 11 <p>Press ALT-F10 to move focus to the toolbars. Navigate through the buttons using the arrow keys.
bgneal@442 12 Press enter to activate a button and return focus to the editor.
bgneal@442 13 Press escape to return focus to the editor without performing any actions.</p>
bgneal@442 14
bgneal@442 15 <h2>Status Bar</h2>
bgneal@442 16 <p>To access the editor status bar, press ALT-F11. Use the left and right arrow keys to navigate between elements in the path.
bgneal@442 17 Press enter or space to select an element. Press escape to return focus to the editor without changing the selection.</p>
bgneal@442 18
bgneal@442 19 <h2>Context Menu</h2>
bgneal@442 20 <p>Press shift-F10 to activate the context menu. Use the up and down arrow keys to move between menu items. To open sub-menus press the right arrow key.
bgneal@442 21 To close submenus press the left arrow key. Press escape to close the context menu.</p>
bgneal@442 22
bgneal@442 23 <h1>Keyboard Shortcuts</h1>
bgneal@442 24 <table>
bgneal@442 25 <thead>
bgneal@442 26 <tr>
bgneal@442 27 <th>Keystroke</th>
bgneal@442 28 <th>Function</th>
bgneal@442 29 </tr>
bgneal@442 30 </thead>
bgneal@442 31 <tbody>
bgneal@442 32 <tr>
bgneal@442 33 <td>Control-B</td><td>Bold</td>
bgneal@442 34 </tr>
bgneal@442 35 <tr>
bgneal@442 36 <td>Control-I</td><td>Italic</td>
bgneal@442 37 </tr>
bgneal@442 38 <tr>
bgneal@442 39 <td>Control-Z</td><td>Undo</td>
bgneal@442 40 </tr>
bgneal@442 41 <tr>
bgneal@442 42 <td>Control-Y</td><td>Redo</td>
bgneal@442 43 </tr>
bgneal@442 44 </tbody>
bgneal@442 45 </table>
bgneal@442 46 </body>
bgneal@442 47 </html>