Skip to content
Snippets Groups Projects
Commit 326acc81 authored by Adam Procter's avatar Adam Procter
Browse files

remove focus-trap

parent ca03229f
Branches
No related tags found
No related merge requests found
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
}, },
"dependencies": { "dependencies": {
"core-js": "^3.10.0", "core-js": "^3.10.0",
"focus-trap": "^6.4.0",
"freeze-dry": "^0.2.4", "freeze-dry": "^0.2.4",
"marked": "^2.0.1", "marked": "^2.0.1",
"pouchdb": "^7.2.2", "pouchdb": "^7.2.2",
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
</p> </p>
<div class="breaker-one"> <div class="breaker-one">
<label for="name">Your Name: {{ nameFormatted }}</label> <label for="name">Your Name: {{ nameFormatted }}</label>
<FocusTrap>
<input <input
v-model.trim="name" v-model.trim="name"
type="text" type="text"
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
autocapitalize="none" autocapitalize="none"
required required
/> />
</FocusTrap>
</div> </div>
<h2>Next start or join a <span class="long">microcosm !</span> 🚀</h2> <h2>Next start or join a <span class="long">microcosm !</span> 🚀</h2>
...@@ -114,9 +115,12 @@ ...@@ -114,9 +115,12 @@
</template> </template>
<script> <script>
export default { export default {
name: 'JoinMicrocosm', name: 'JoinMicrocosm',
data: function () { data: function () {
return { return {
// what you are calling yourself / device // what you are calling yourself / device
......
...@@ -2,6 +2,5 @@ import { createApp } from 'vue' ...@@ -2,6 +2,5 @@ import { createApp } from 'vue'
import App from './App.vue' import App from './App.vue'
import router from './router' import router from './router'
import store from './store/store' import store from './store/store'
import focustrap from 'focus-trap'
createApp(App).use(store).use(router).use(focustrap).mount('#app') createApp(App).use(store).use(router).mount('#app')
Source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment