Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function RecordingViewer(params) {
var defaults = {
};
this.urlParams = _.getUrlParams();
InteractionViewer.call(this, _.defaults(Object.create(null), params, defaults));
this.recordingId = this.urlParams.fullId;
this.characterCreator = new CharacterCreator();
this.timeSlider = $(this.__options.timeSlider || '#timeSlider');
this.annotationLabels = $(this.__options.annotationLabels || '#annotationLabels');
}