|
|
@ -28,8 +28,8 @@ import Validator from '../shared/Validator'; |
|
|
|
* @constructor |
|
|
|
* @extends Core |
|
|
|
*/ |
|
|
|
|
|
|
|
function Timeline (container, items, groups, options) { |
|
|
|
|
|
|
|
if (!(this instanceof Timeline)) { |
|
|
|
throw new SyntaxError('Constructor must be called with the new operator'); |
|
|
|
} |
|
|
@ -45,22 +45,21 @@ function Timeline (container, items, groups, options) { |
|
|
|
this.defaultOptions = { |
|
|
|
start: null, |
|
|
|
end: null, |
|
|
|
|
|
|
|
autoResize: true, |
|
|
|
|
|
|
|
orientation: { |
|
|
|
axis: 'bottom', // axis orientation: 'bottom', 'top', or 'both'
|
|
|
|
item: 'bottom' // not relevant
|
|
|
|
}, |
|
|
|
moment: moment, |
|
|
|
|
|
|
|
width: null, |
|
|
|
height: null, |
|
|
|
maxHeight: null, |
|
|
|
minHeight: null |
|
|
|
}; |
|
|
|
this.options = util.deepExtend({}, this.defaultOptions); |
|
|
|
|
|
|
|
if (options) { |
|
|
|
this.options.rtl = options.rtl |
|
|
|
} |
|
|
|
// Create the DOM, props, and emitter
|
|
|
|
this._create(container); |
|
|
|
|
|
|
@ -104,11 +103,6 @@ function Timeline (container, items, groups, options) { |
|
|
|
// current time bar
|
|
|
|
this.currentTime = new CurrentTime(this.body); |
|
|
|
this.components.push(this.currentTime); |
|
|
|
|
|
|
|
// apply options
|
|
|
|
if (options) { |
|
|
|
this.setOptions(options); |
|
|
|
} |
|
|
|
|
|
|
|
// item set
|
|
|
|
this.itemSet = new ItemSet(this.body, this.options); |
|
|
@ -149,6 +143,11 @@ function Timeline (container, items, groups, options) { |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
// apply options
|
|
|
|
if (options) { |
|
|
|
this.setOptions(options); |
|
|
|
} |
|
|
|
|
|
|
|
// IMPORTANT: THIS HAPPENS BEFORE SET ITEMS!
|
|
|
|
if (groups) { |
|
|
|
this.setGroups(groups); |
|
|
@ -194,7 +193,6 @@ Timeline.prototype.setOptions = function (options) { |
|
|
|
if (errorFound === true) { |
|
|
|
console.log('%cErrors have been found in the supplied options object.', printStyle); |
|
|
|
} |
|
|
|
|
|
|
|
Core.prototype.setOptions.call(this, options); |
|
|
|
|
|
|
|
if ('type' in options) { |
|
|
|