Skip to content

Commit

Permalink
feat(docs): UMD page > selecting tags - add "modern" option
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed May 28, 2020
1 parent fc477d0 commit 594aeeb
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/src/components/page-parts/umd/UmdTags.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
q-separator

q-card-section.q-gutter-xs
q-toggle(v-model="modern" label="Modern (ES6+)")
q-toggle(v-model="cfgObject" label="Quasar Configure Object")
q-toggle(v-model="minified" label="Minified files")
q-toggle(v-model="rtl" label="RTL CSS support")
Expand Down Expand Up @@ -105,6 +106,7 @@ export default {
animate: false
},
modern: false,
minified: true,
rtl: false,
ie: false,
Expand Down Expand Up @@ -219,7 +221,7 @@ export default {
body () {
const js = [
'cdn.jsdelivr.net/npm/vue@^2.0.0/dist/vue.min.js',
`cdn.jsdelivr.net/npm/quasar@${this.version}/dist/quasar.umd.min.js`
`cdn.jsdelivr.net/npm/quasar@${this.version}/dist/quasar.umd.${this.modern === true ? 'modern.' : ''}min.js`
]
if (this.ie === true) {
Expand Down
Empty file modified icongenie/bin/icongenie
100644 → 100755
Empty file.
Empty file modified icongenie/bin/icongenie-generate
100644 → 100755
Empty file.
Empty file modified icongenie/bin/icongenie-help
100644 → 100755
Empty file.
Empty file modified icongenie/bin/icongenie-profile
100644 → 100755
Empty file.
Empty file modified icongenie/bin/icongenie-verify
100644 → 100755
Empty file.

0 comments on commit 594aeeb

Please sign in to comment.