Fix bugs in 7.1% of all lines of code

This commit is contained in:
Thomas Lovén 2019-04-03 18:47:05 +02:00
parent ddd996088b
commit d978f1b594

View File

@ -2,7 +2,7 @@ class GapCard extends HTMLElement {
setConfig(config) {
this.height = ('height' in config) ? config.height : 50;
this.size = ('size' in config) ? config.size : Math.ceil(this.size/50);
this.size = ('size' in config) ? config.size : Math.ceil(this.height/50);
this.style.setProperty('height', this.height + 'px');
}