forked from DGNum/gestioCOF
Bugfix : deep extend in history.js
This commit is contained in:
parent
7e15fd2d9e
commit
27d26245a5
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ class KHistory {
|
|||
}
|
||||
|
||||
constructor(options) {
|
||||
var all_options = $.extend({}, this.constructor.default_options, options);
|
||||
var all_options = $.extend(true, {}, this.constructor.default_options, options);
|
||||
this.api_options = all_options.api_options;
|
||||
|
||||
this._$container = $('#history');
|
||||
|
|
Loading…
Reference in a new issue