I want to present the currentweather_big_owm on 2 different screens.
1x at the normal screen and 1x at the standby screen.
The only issue i have is that i need to different blocksizes.
I've tried this, but doesn't work
Code: Select all
var currentweather_1 = 'currentweather_big_owm';
var currentweather_2 = 'currentweather_big_owm';
blocks[currentweather_1] = {width :12}
blocks[currentweather_2] = {width :6}
columns[10] = {}
columns[10]['blocks'] = currentweather_1]
columns[10]['width'] = 4
columns_standby[1] = {}
columns_standby[1]['blocks'] = [currentweather_2]
columns_standby[1]['width'] = 12;