Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
get initialWidth() {
return this._config['card.width'];
}
render() {
this.$element = $(wrappedCardsViewTemplate({
cardWidth: this._config['card.width'],
}));
this._$cardsContainer = this.$element.find('.cards-container');
this._$dummyCards = this.$element.find('.dummy-card');
this.verticalReader.render();
this._registerDomEvents();
return this.$element;
}