annotate static/js/tiny_mce/plugins/advhr/rule.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@312 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
bgneal@312 2 <html xmlns="http://www.w3.org/1999/xhtml">
bgneal@312 3 <head>
bgneal@312 4 <title>{#advhr.advhr_desc}</title>
bgneal@312 5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@312 6 <script type="text/javascript" src="js/rule.js"></script>
bgneal@312 7 <script type="text/javascript" src="../../utils/mctabs.js"></script>
bgneal@312 8 <script type="text/javascript" src="../../utils/form_utils.js"></script>
bgneal@312 9 <link href="css/advhr.css" rel="stylesheet" type="text/css" />
bgneal@312 10 </head>
bgneal@442 11 <body role="application">
bgneal@312 12 <form onsubmit="AdvHRDialog.update();return false;" action="#">
bgneal@312 13 <div class="tabs">
bgneal@312 14 <ul>
bgneal@442 15 <li id="general_tab" class="current" aria-controls="general_panel"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advhr.advhr_desc}</a></span></li>
bgneal@312 16 </ul>
bgneal@312 17 </div>
bgneal@312 18
bgneal@312 19 <div class="panel_wrapper">
bgneal@312 20 <div id="general_panel" class="panel current">
bgneal@442 21 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
bgneal@442 22 <tr role="group" aria-labelledby="width_label">
bgneal@442 23 <td><label id="width_label" for="width">{#advhr_dlg.width}</label></td>
bgneal@442 24 <td class="nowrap">
bgneal@442 25 <input id="width" name="width" type="text" value="" class="mceFocus" />
bgneal@442 26 <span style="display:none;" id="width_unit_label">{#advhr_dlg.widthunits}</span>
bgneal@442 27 <select name="width2" id="width2" aria-labelledby="width_unit_label">
bgneal@442 28 <option value="">px</option>
bgneal@442 29 <option value="%">%</option>
bgneal@442 30 </select>
bgneal@442 31 </td>
bgneal@442 32 </tr>
bgneal@442 33 <tr>
bgneal@442 34 <td><label for="size">{#advhr_dlg.size}</label></td>
bgneal@442 35 <td><select id="size" name="size">
bgneal@442 36 <option value="">{#advhr_dlg.normal}</option>
bgneal@442 37 <option value="1">1</option>
bgneal@442 38 <option value="2">2</option>
bgneal@442 39 <option value="3">3</option>
bgneal@442 40 <option value="4">4</option>
bgneal@442 41 <option value="5">5</option>
bgneal@442 42 </select></td>
bgneal@442 43 </tr>
bgneal@442 44 <tr>
bgneal@442 45 <td><label for="noshade">{#advhr_dlg.noshade}</label></td>
bgneal@442 46 <td><input type="checkbox" name="noshade" id="noshade" class="radio" /></td>
bgneal@442 47 </tr>
bgneal@442 48 </table>
bgneal@312 49 </div>
bgneal@312 50 </div>
bgneal@312 51
bgneal@312 52 <div class="mceActionPanel">
bgneal@312 53 <input type="submit" id="insert" name="insert" value="{#insert}" />
bgneal@312 54 <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
bgneal@312 55 </div>
bgneal@312 56 </form>
bgneal@312 57 </body>
bgneal@312 58 </html>