浏览代码

Fix #1473

Example: https://jsfiddle.net/djhvscf/88useqm1/26/
Dennis Hernández 10 年之前
父节点
当前提交
87f33b3552
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/extensions/mobile/bootstrap-table-mobile.js

+ 5 - 0
src/extensions/mobile/bootstrap-table-mobile.js

@@ -98,6 +98,11 @@
             return;
         }
 
+        if (this.options.minWidth < 100 && this.options.resizable) {
+            console.log("The minWidth when the resizable extension is active should be greater or equal than 100");
+            this.options.minWidth = 100;
+        }
+
         var that = this,
             old = {
                 width: $(window).width(),