Revision: 2059
          http://mrbs.svn.sourceforge.net/mrbs/?rev=2059&view=rev
Author:   cimorrison
Date:     2011-10-03 09:23:30 +0000 (Mon, 03 Oct 2011)
Log Message:
-----------
Fixed bug where tables were not being resized when the window size was increased

Modified Paths:
--------------
    mrbs/branches/datatables/web/Themes/default/header.inc

Modified: mrbs/branches/datatables/web/Themes/default/header.inc
===================================================================
--- mrbs/branches/datatables/web/Themes/default/header.inc      2011-10-03 
09:10:56 UTC (rev 2058)
+++ mrbs/branches/datatables/web/Themes/default/header.inc      2011-10-03 
09:23:30 UTC (rev 2059)
@@ -361,7 +361,7 @@
                 }
                 $('.js div.datatable_container').css('visibility', 'visible');
                 <?php // Rebind the handler ?>
-                $(window).unbind('resize', windowResizeHandler);
+                $(window).bind('resize', windowResizeHandler);
               };
               
             <?php
@@ -1609,7 +1609,7 @@
           */
           $('.js div.datatable_container').css('visibility', 'visible');
           <?php // Rebind the handler ?>
-          $(window).unbind('resize', windowResizeHandler);
+          $(window).bind('resize', windowResizeHandler);
         };
       <?php
       // Remove the first column from the column visibility
@@ -1707,7 +1707,7 @@
                                                  "sLeftWidth": "fixed"});
         $('.js div.datatable_container').css('visibility', 'visible');
         <?php // Rebind the handler ?>
-        $(window).unbind('resize', windowResizeHandler);
+        $(window).bind('resize', windowResizeHandler);
         <?php 
         // Also add a "Delete entries button", provided that (a) the user is an
         // admin and (b) the configuration allows it

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to