diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-03-19 22:27:20 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-03-19 22:27:20 -0400 |
commit | 66615bb2095df3dda23ff393f6bb8bd9dd50a766 (patch) | |
tree | 3b06f74ea40845969ba0ee183e95d21060811982 | |
parent | de3d574804637c5f99e0993c0d4750c218fde07c (diff) |
don't allow closing components
-rw-r--r-- | public-src/main.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public-src/main.js b/public-src/main.js index 0979000..a9cdba2 100644 --- a/public-src/main.js +++ b/public-src/main.js @@ -24,24 +24,28 @@ define([ var layoutManager = new GoldenLayout({ settings: { + showCloseIcon: false, }, content: [{ type: 'row', content: [ { title: 'proton', + isClosable: false, type: 'component', componentName: 'jarmon:tabbed-chart-ui', componentState: cfgProton, }, { title: 'winston', + isClosable: false, type: 'component', componentName: 'jarmon:tabbed-chart-ui', componentState: cfgWinston, }, { title: 'TLS', + isClosable: false, type: 'component', componentName: 'html', componentState: document.getElementById("tls").innerHTML, |