-
-
Save git2358/ebbecc2ce76c8ff9f16f07c8a29166f7 to your computer and use it in GitHub Desktop.
Bookmarklet to quickly switch between a repo and the gh-pages (github.io) view.
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
| // Instructions. Save as a bookmark. Click when on a repo or github.io (gh-pages branch) site. | |
| javascript:(function(h,p){ | |
| location = /io$/.test(h) ? | |
| 'https://github.com/' + h.split('.')[0] + p: | |
| 'http://'+ p.split('/')[1]+'.github.io'+ '/' + p.split('/').slice(2).join('/') | |
| })(location.host,location.pathname); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment