Skip to content

Commit

Permalink
update #78 stopped click event that toggles the content of a research…
Browse files Browse the repository at this point in the history
…result if clicked on another button inside of the researchresult.
  • Loading branch information
telion2 committed Mar 15, 2018
1 parent 3f8dc31 commit 15c2118
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions views/components/analysis/researchresult.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
<div class="mdl-layout-spacer"></div>
<button class="mdl-cell mdl-cell--1-col mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon deleteSpaces"
v-if="viewing"
v-on:click="editResearch">
v-on:click.stop="editResearch">
<i class="material-icons">edit</i>
</button>
<button class="mdl-cell mdl-cell--1-col mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon deleteSpaces"
v-else
v-on:click="saveResult">
v-on:click.stop="saveResult">
<i class="material-icons">check</i>
</button>
<button class="mdl-cell mdl-cell--1-col mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon deleteSpaces"
v-on:click="showSource">
v-on:click.stop="showSource">
<i class="material-icons">public</i>
</button>
</div>
Expand Down

0 comments on commit 15c2118

Please sign in to comment.