I tried this code:
// Show blocks by default, not styles
editor.Panels.getButton('views', 'open-sm').set('active', false)
editor.Panels.getButton('views', 'open-blocks').set('active', true)
It works but doing this will hide the device selector in the top left for some reason.
try just with
editor.Panels.getButton('views', 'open-blocks').set('active', true)
but put it after the render (if you're using autorender: false)
Ah, setting it after render works great. Thanks
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
try just with
but put it after the render (if you're using
autorender: false)