ソースを参照

Merge pull request #1815 from Norkart/develop

Fixed ReorderRows init when reorderable is false
wenzhixin 10 年 前
コミット
d832ab81dd

+ 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;
         }