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 !!!
|
||||
or both
|
||||
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 #####
|
||||
TO TEST:
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-btn icon @click="goHelp()"><v-icon>fa-question-circle</v-icon></v-btn>
|
||||
<v-btn
|
||||
:disabled="!canDoAction()"
|
||||
color="blue darken-1"
|
||||
@@ -51,6 +52,9 @@ export default {
|
||||
available() {
|
||||
return this.selectedItems.length > 0;
|
||||
},
|
||||
goHelp() {
|
||||
window.open(this.$store.state.helpUrl + "ay-ex-tags", "_blank");
|
||||
},
|
||||
canDoAction() {
|
||||
let vm = this;
|
||||
if (vm.action == "Replace" && !vm.replace) {
|
||||
|
||||
@@ -275,6 +275,11 @@
|
||||
<v-btn depressed tile @click="editClick('codeblock')">
|
||||
<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 -->
|
||||
</div>
|
||||
</v-col>
|
||||
@@ -394,6 +399,9 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
goHelp() {
|
||||
window.open(this.$store.state.helpUrl + "ay-start-form-wiki", "_blank");
|
||||
},
|
||||
compiledOutput() {
|
||||
if (!this.localVal) {
|
||||
return "";
|
||||
|
||||
Reference in New Issue
Block a user