Commit a9cb33ca authored by Jérome Perrin's avatar Jérome Perrin

sql_browser: adust for monaco 0.34.1 / firefox 68

automaticLayout can not be used with firefox 68 (the browser from test
nodes) because it lacks support for ResizeObserver
parent f285f7bf
......@@ -102,7 +102,7 @@
editor = monaco_editor = monaco.editor.create(
document.querySelector('#query'),
{
automaticLayout: true,
automaticLayout: window.ResizeObserver ? true : false,
autoIndent: true
}
);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment