Browse Source

Fixed ReorderRows init when reorderable is false

When the ReorderabledRows property is false or not present, the rest of
bootstraptable was not inited properly. (Since commit 6201df0)
Robert Nordan 10 years ago
parent
commit
7df299082a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/extensions/reorder-rows/bootstrap-table-reorder-rows.js

+ 1 - 0
src/extensions/reorder-rows/bootstrap-table-reorder-rows.js

@@ -45,6 +45,7 @@
     BootstrapTable.prototype.init = function () {
 
         if (!this.options.reorderableRows) {
+            _init.apply(this, Array.prototype.slice.apply(arguments));
             return;
         }