Bugfix : deep extend in history.js

This commit is contained in:
Ludovic Stephan 2018-10-05 22:59:55 +02:00
parent 7e15fd2d9e
commit 27d26245a5

View file

@ -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');