We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c08bb32 commit 08bdc48Copy full SHA for 08bdc48
index.html
@@ -3,7 +3,7 @@
3
<meta charset=utf-8>
4
<link rel=stylesheet href=style/style.css>
5
<title>GistBarn</title>
6
-<a href=/tests/>Tests</a>
+<!--<a href=/tests/>Tests</a>-->
7
<main class=app></main>
8
<!-- adds a GitHub global object -->
9
<script src="https://unpkg.com/github-api/dist/GitHub.bundle.min.js"></script>
src/ap
src/app.js
@@ -15,6 +15,8 @@ Object.assign(self, {appState});
15
start();
16
17
async function start() {
18
+ // don't support routing (yet)
19
+ location.hash = '';
20
const isLoggedIn = await API.isLoggedIn(appState);
21
if ( !isLoggedIn ) {
22
AuthIn(appState).to('main.app', 'innerHTML');
0 commit comments