4 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
5 a#mainLink(href="/#/variants/list")
6 | {{ st.tr["View alphabetical variants list"] }}
11 import { store } from "@/store";
21 // (AJAX) Request to get rules content (plain text, HTML)
24 "raw-loader!@/translations/variants/" + this.st.lang + ".pug"
26 .replace('export default "', "")
28 // Next two lines fix a weird issue after last update (2019-11)
35 // oninput listener, required for smartphones:
36 setCurPrefix: function(e) {
37 this.curPrefix = e.target.value;
39 getLink: function(vname) {
40 return "/variants/" + vname;
42 getVclasses: function(varray, idx) {
43 const idxMod2 = idx % 2;
45 'col-md-offset-1': idxMod2 == 0,
46 'col-lg-offset-2': idxMod2 == 0,
47 'last-noneighb': idxMod2 == 0 && idx == varray.length - 1
54 <style lang="sass" scoped>