Created
July 7, 2016 01:16
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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