Easy way:
- add to the config an variable fontSize / tableSize or what so ever
- update you project json to not create a new table with size "xsmall" as it is currently, but to use the variable from global config.
- Allowed values would be xsmall, small, medium, large, xlarge (native by your used method). Sample:
var places = document.createElement('table');
places.className = this.config.fontSize; //or however you called you variable
- upscale your images (as they would remain to little (didnt look to deep into your code so i dont know where you set the image size)
Thanks for your great work!
Easy way:
Thanks for your great work!