I end up solving this issue.
On espace SilkUI framework Version 1.4.1, on SilkUICommon web block need to change the init function.
On espace SilkUI framework Version 1.4.1, on SilkUICommon web block need to change the init function.
The logic doesn't take in consideration the size of the screen because is hardcoded "Desktop" instead of using function that.getDevice() responsable to check width of screen.
First time a browser opens silk framework saves a cookie named DEVICE_TYPE containing the type of screen, so for clients that opened screens before this fix and have resolution below 1024 need to update this cookie (I forced this cookie temporarily to be always updated ).
} else {//Device is desktopthat.setCookie(cookieDeviceName,that.getDevice());
//Before that.setCookie(cookieDeviceName,"Desktop");
First time a browser opens silk framework saves a cookie named DEVICE_TYPE containing the type of screen, so for clients that opened screens before this fix and have resolution below 1024 need to update this cookie (I forced this cookie temporarily to be always updated ).