浏览代码

Uncaught TypeError: Cannot read property 'prop' of undefined #1468

Fix #1468
Dennis Hernández 10 年之前
父节点
当前提交
38bb74708c
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/extensions/mobile/bootstrap-table-mobile.js

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

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