Browse Source

Merge pull request #996 from Xandertje/patch-2

Remove incorrect parenthesis from setTimeout call.
文翼 10 years ago
parent
commit
131874e4fe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/extensions/mobile/bootstrap-table-mobile.js

+ 1 - 1
src/extensions/mobile/bootstrap-table-mobile.js

@@ -10,7 +10,7 @@
 
     var resetView = function (that) {
         if (that.options.height || that.options.showFooter) {
-            setTimeout(that.resetView(), 1);
+            setTimeout(that.resetView, 1);
         }
     };