Skip to content

Instantly share code, notes, and snippets.

@dmolsen
Created July 7, 2016 01:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmolsen/d43b6e5cfc7a23fc4e192afc6dcb7aef to your computer and use it in GitHub Desktop.
Save dmolsen/d43b6e5cfc7a23fc4e192afc6dcb7aef to your computer and use it in GitHub Desktop.
This should be added to the end of `index.html` below the `Dispatcher` set-up.
<script>
function modifyPanels() {
var panelsNew;
panelsNew = Panels.panels.splice(1,1);
panelsNew[0].default = true;
Panels.panels = panelsNew;
}
Dispatcher.addListener("setupPanels", modifyPanels);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment