Browse Source

Fix for Columns resizing not working #4803 (#4804)

Alex 5 years ago
parent
commit
322981758d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/extensions/resizable/bootstrap-table-resizable.js

+ 2 - 2
src/extensions/resizable/bootstrap-table-resizable.js

@@ -37,8 +37,8 @@ BootstrapTable.prototype.initBody = function (...args) {
   _initBody.apply(this, Array.prototype.slice.apply(args))
 
   that.$el
-    .off('column-switch.bs.table, page-change.bs.table')
-    .on('column-switch.bs.table, page-change.bs.table', () => {
+    .off('column-switch.bs.table page-change.bs.table')
+    .on('column-switch.bs.table page-change.bs.table', () => {
       reInitResizable(that)
     })
 }