This commit is contained in:
@@ -4,12 +4,7 @@ PRIORITY - ALWAYS Lowest level stuff first, i.e. TODO at server, api route chang
|
|||||||
=-=-=-=-
|
=-=-=-=-
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
todo: help links for individual extensions (does this refer to the new plugins?)? (button I guess since no menu on them)
|
|
||||||
todo: rockfish, can't do purchase for raven or view it I think
|
|
||||||
todo: rockfish, upgrade to latest bootstrap, out of date Currently
|
|
||||||
todo: rockfish, trial license fetched On date not updating? (not showing in UI)
|
|
||||||
todo: make grid selection list sticky?
|
|
||||||
todo: put sample wiki in docs or maybe in UI as a thing you can click on to insert it into current wiki if empty !!!
|
todo: put sample wiki in docs or maybe in UI as a thing you can click on to insert it into current wiki if empty !!!
|
||||||
or both
|
or both
|
||||||
Then remove from seeder entirely
|
Then remove from seeder entirely
|
||||||
@@ -184,7 +179,9 @@ todo: MRU
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
todo: rockfish, can't do purchase for raven or view it I think
|
||||||
|
todo: rockfish, upgrade to latest bootstrap, out of date Currently
|
||||||
|
todo: rockfish, trial license fetched On date not updating? (not showing in UI)
|
||||||
|
|
||||||
### RETEST ALL DEVICES WHEN GET TO HERE #####
|
### RETEST ALL DEVICES WHEN GET TO HERE #####
|
||||||
TO TEST:
|
TO TEST:
|
||||||
|
|||||||
@@ -28,6 +28,7 @@
|
|||||||
></v-text-field>
|
></v-text-field>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
|
<v-btn icon @click="goHelp()"><v-icon>fa-question-circle</v-icon></v-btn>
|
||||||
<v-btn
|
<v-btn
|
||||||
:disabled="!canDoAction()"
|
:disabled="!canDoAction()"
|
||||||
color="blue darken-1"
|
color="blue darken-1"
|
||||||
@@ -51,6 +52,9 @@ export default {
|
|||||||
available() {
|
available() {
|
||||||
return this.selectedItems.length > 0;
|
return this.selectedItems.length > 0;
|
||||||
},
|
},
|
||||||
|
goHelp() {
|
||||||
|
window.open(this.$store.state.helpUrl + "ay-ex-tags", "_blank");
|
||||||
|
},
|
||||||
canDoAction() {
|
canDoAction() {
|
||||||
let vm = this;
|
let vm = this;
|
||||||
if (vm.action == "Replace" && !vm.replace) {
|
if (vm.action == "Replace" && !vm.replace) {
|
||||||
|
|||||||
@@ -275,6 +275,11 @@
|
|||||||
<v-btn depressed tile @click="editClick('codeblock')">
|
<v-btn depressed tile @click="editClick('codeblock')">
|
||||||
<v-icon>fa-square-full</v-icon></v-btn
|
<v-icon>fa-square-full</v-icon></v-btn
|
||||||
>
|
>
|
||||||
|
|
||||||
|
<!-- HELP -->
|
||||||
|
<v-btn depressed tile class="ml-1" @click="goHelp()">
|
||||||
|
<v-icon>fa-question-circle</v-icon></v-btn
|
||||||
|
>
|
||||||
<!-- END OF BUTTONS -->
|
<!-- END OF BUTTONS -->
|
||||||
</div>
|
</div>
|
||||||
</v-col>
|
</v-col>
|
||||||
@@ -394,6 +399,9 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
goHelp() {
|
||||||
|
window.open(this.$store.state.helpUrl + "ay-start-form-wiki", "_blank");
|
||||||
|
},
|
||||||
compiledOutput() {
|
compiledOutput() {
|
||||||
if (!this.localVal) {
|
if (!this.localVal) {
|
||||||
return "";
|
return "";
|
||||||
|
|||||||
Reference in New Issue
Block a user