annotate static/js/tiny_mce/plugins/table/merge_cells.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>{#table_dlg.merge_cells_title}</title>
bgneal@312 5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@312 6 <script type="text/javascript" src="../../utils/mctabs.js"></script>
bgneal@312 7 <script type="text/javascript" src="../../utils/validate.js"></script>
bgneal@312 8 <script type="text/javascript" src="js/merge_cells.js"></script>
bgneal@312 9 </head>
bgneal@442 10 <body style="margin: 8px" role="application">
bgneal@312 11 <form onsubmit="MergeCellsDialog.merge();return false;" action="#">
bgneal@312 12 <fieldset>
bgneal@312 13 <legend>{#table_dlg.merge_cells_title}</legend>
bgneal@442 14 <table role="presentation" border="0" cellpadding="0" cellspacing="3" width="100%">
bgneal@442 15 <tr>
bgneal@442 16 <td><label for="numcols">{#table_dlg.cols}</label>:</td>
bgneal@442 17 <td align="right"><input type="text" id="numcols" name="numcols" value="" class="number min1 mceFocus" style="width: 30px" aria-required="true" /></td>
bgneal@442 18 </tr>
bgneal@442 19 <tr>
bgneal@442 20 <td><label for="numrows">{#table_dlg.rows}</label>:</td>
bgneal@442 21 <td align="right"><input type="text" id="numrows" name="numrows" value="" class="number min1" style="width: 30px" aria-required="true" /></td>
bgneal@442 22 </tr>
bgneal@442 23 </table>
bgneal@312 24 </fieldset>
bgneal@312 25
bgneal@312 26 <div class="mceActionPanel">
bgneal@312 27 <input type="submit" id="insert" name="insert" value="{#update}" />
bgneal@312 28 <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
bgneal@312 29 </div>
bgneal@312 30 </form>
bgneal@312 31 </body>
bgneal@312 32 </html>