Modal to accept/refuse challenge + diagrams preview when creating challenge
[vchess.git] / client / src / main.js
... / ...
CommitLineData
1import Vue from "vue";
2import App from "./App.vue";
3import router from "./router";
4import { store } from "./store";
5
6Vue.config.productionTip = false;
7
8new Vue({
9 router,
10 render: function(h) {
11 return h(App);
12 },
13 created: function() {
14 window.doClick = elemId => {
15 document.getElementById(elemId).click();
16 };
17 document.addEventListener("keydown", e => {
18 if (e.code === "Escape") {
19 let modalBoxes = document.querySelectorAll("[id^='modal']");
20 modalBoxes.forEach(m => {
21 if (m.checked && m.id != "modalAccept") m.checked = false;
22 });
23 }
24 });
25 store.initialize();
26 }
27}).$mount("#app");