Which kernel variable is responsible for the size of the screen height on a mobile device?
I have this code
value: function content() {
return [m('div', { className: 'Modal-body' }, [m('div', {
className: 'Map-field',
style: { 'width': '100%', 'height': '400px' },
config: this.loadMap.bind(this)
})])];
}
This is a Google Map, now it says 400px
I need to specify a variable that itself will indicate the required values from the engine core.
style: { 'width': '100%', 'height': '400px' },
Most likely a question for developers.