Commit | Line | Data |
---|---|---|
ff0150d1 BA |
1 | <template lang="pug"> |
2 | main | |
3 | .row | |
4 | .col-sm-12.col-md-8.col-md-offset-2.col-lg-6.col-lg-offset-3 | |
5 | div#faqDiv(v-html="content") | |
6 | </template> | |
7 | ||
8 | <script> | |
9 | import { store } from "@/store"; | |
70c9745d | 10 | import afterRawLoad from "@/utils/afterRawLoad"; |
ff0150d1 BA |
11 | export default { |
12 | name: "my-faq", | |
13 | data: function() { | |
14 | return { st: store.state }; | |
15 | }, | |
16 | computed: { | |
17 | content: function() { | |
ff0150d1 | 18 | return ( |
70c9745d BA |
19 | afterRawLoad( |
20 | require( | |
21 | "raw-loader!@/translations/faq/" + this.st.lang + ".pug" | |
22 | ).default | |
23 | ) | |
ff0150d1 BA |
24 | ); |
25 | } | |
26 | }, | |
27 | mounted: function() { | |
28 | this.re_setListeners(); | |
29 | }, | |
30 | updated: function() { | |
31 | this.re_setListeners(); | |
32 | }, | |
33 | methods: { | |
34 | re_setListeners: function() { | |
35 | document.querySelectorAll(".answer").forEach(a => { | |
36 | a.style.display = "none"; | |
37 | }); | |
38 | document.querySelectorAll(".question").forEach(q => { | |
39 | q.addEventListener("click", (e) => { | |
40 | let answerDiv = e.target.nextSibling; | |
41 | const answerVisible = (answerDiv.style.display == "block"); | |
42 | answerDiv.style.display = (answerVisible ? "none" : "block"); | |
43 | }); | |
44 | }); | |
45 | } | |
46 | } | |
47 | }; | |
48 | </script> | |
49 | ||
50 | <style lang="sass"> | |
51 | #faqDiv | |
6e0f2842 | 52 | margin-bottom: 10px |
ff0150d1 BA |
53 | @media screen and (max-width: 767px) |
54 | margin-left: var(--universal-margin) | |
55 | margin-right: var(--universal-margin) | |
56 | ||
57 | .question | |
58 | color: darkblue | |
59 | font-size: 1.1em | |
60 | margin-top: 15px | |
61 | cursor: pointer | |
62 | ||
63 | .answer | |
b9ce3d0f | 64 | margin-bottom: 10px |
ff0150d1 BA |
65 | ol, ul |
66 | margin-top: 0 | |
67 | margin-bottom: 0 | |
68 | </style> |