fix(toolbar): reduce the number of tools visible on the toolbar; bump package versions to deploy other fixes

This commit is contained in:
dannyrb 2019-06-05 12:43:03 -04:00
parent 1eeada3319
commit fa525bcb43

View File

@ -21,11 +21,6 @@ include tags. Here's how it works:
<code>Google Fonts, Sanchez & Roboto</code> <code>Google Fonts, Sanchez & Roboto</code>
</a> </a>
</li> </li>
<li>
<a href="https://use.fontawesome.com/releases/v5.7.2/css/all.css">
<code>fontawesome@5.7.2</code>
</a>
</li>
<li> <li>
<a href="https://unpkg.com/react@16/umd/react.production.min.js"> <a href="https://unpkg.com/react@16/umd/react.production.min.js">
<code>react@16.8.6</code> <code>react@16.8.6</code>
@ -73,7 +68,7 @@ window.config = {
}, },
], ],
}, },
} };
``` ```
<ol start="5"><li> <ol start="5"><li>
@ -82,10 +77,10 @@ window.config = {
```js ```js
// Made available by the `ohif-viewer` script included in step 1 // Made available by the `ohif-viewer` script included in step 1
var Viewer = window.OHIFStandaloneViewer.App var Viewer = window.OHIFStandaloneViewer.App;
var app = React.createElement(Viewer, window.config, null) var app = React.createElement(Viewer, window.config, null);
ReactDOM.render(app, document.getElementById('ohif-viewer-target')) ReactDOM.render(app, document.getElementById('ohif-viewer-target'));
``` ```
#### Tips & Tricks #### Tips & Tricks