diff options
-rw-r--r-- | application/components/app.vue | 1 | ||||
-rw-r--r-- | application/github.js | 10 | ||||
-rw-r--r-- | application/main.js | 1 |
3 files changed, 0 insertions, 12 deletions
diff --git a/application/components/app.vue b/application/components/app.vue index 8322327..9661238 100644 --- a/application/components/app.vue +++ b/application/components/app.vue @@ -135,7 +135,6 @@ export default { @click="handleCommitChanges" title="Commit keymap changes to GitHub repository" /> - <button id="toggle" @click="terminalOpen = !terminalOpen">{{ !terminalOpen ? '⇡' : '⇣' }}</button> </div> </loader> </template>
\ No newline at end of file diff --git a/application/github.js b/application/github.js index cd59c4d..51dafea 100644 --- a/application/github.js +++ b/application/github.js @@ -35,16 +35,6 @@ export async function init () { installation = data.installation repositories = data.repositories - - const logout = document.createElement('button') - logout.setAttribute('style', 'display: inline-block; z-index: 100; position: absolute; right: 0px') - logout.textContent = 'Logout' - logout.addEventListener('click', () => { - localStorage.removeItem('auth_token') - location.reload() - }) - - document.body.appendChild(logout) } } diff --git a/application/main.js b/application/main.js index ed96422..ca64cf1 100644 --- a/application/main.js +++ b/application/main.js @@ -1,6 +1,5 @@ import './style.css' import '@fortawesome/fontawesome-free/css/all.css' -import 'xterm/css/xterm.css' import * as Vue from 'vue' import App from './components/app.vue' |