ソースを参照

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;
             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,
         var that = this,
             old = {
             old = {
                 width: $(window).width(),
                 width: $(window).width(),