This commit is contained in:
2020-08-04 19:41:02 +00:00
parent 1c2e3c9333
commit 83a9ecb581
3 changed files with 16 additions and 7 deletions

View File

@@ -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) {

View File

@@ -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 "";