annotate static/js/tiny_mce/plugins/table/merge_cells.htm @ 318:c550933ff5b6

Fix a bug where you'd get an error when trying to delete a forum thread (topic does not exist). Apparently when you call topic.delete() the posts would get deleted, but the signal handler for each one would run, and it would try to update the topic's post count or something, but the topic was gone? Reworked the code a bit and explicitly delete the posts first. I also added a sync() call on the parent forum since post counts were not getting adjusted.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 Feb 2011 21:46:52 +0000
parents 88b2b9cb8c1f
children 6c182ceb7147
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@312 10 <body style="margin: 8px">
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@312 14 <table border="0" cellpadding="0" cellspacing="3" width="100%">
bgneal@312 15 <tr>
bgneal@312 16 <td>{#table_dlg.cols}:</td>
bgneal@312 17 <td align="right"><input type="text" name="numcols" value="" class="number min1 mceFocus" style="width: 30px" /></td>
bgneal@312 18 </tr>
bgneal@312 19 <tr>
bgneal@312 20 <td>{#table_dlg.rows}:</td>
bgneal@312 21 <td align="right"><input type="text" name="numrows" value="" class="number min1" style="width: 30px" /></td>
bgneal@312 22 </tr>
bgneal@312 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>