Browse Source

Fix IE browser can not display table header bug when use mergeCells method.

zhixin 11 years ago
parent
commit
ee11586f70
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/bootstrap-table.js

+ 1 - 2
src/bootstrap-table.js

@@ -1382,8 +1382,7 @@
             }
         }
 
-        $td.attr('rowspan', rowspan).attr('colspan', colspan)
-            .show(10, $.proxy(this.resetView, this));
+        $td.attr('rowspan', rowspan).attr('colspan', colspan).show();
     };
 
     BootstrapTable.prototype.getSelections = function () {