Merge pull request #1534 from Safelite/feature/csr-1790
Feature/csr 1790
This commit is contained in:
commit
2d4a894d65
1 changed files with 8 additions and 0 deletions
|
|
@ -3,6 +3,7 @@
|
||||||
class="loader"
|
class="loader"
|
||||||
role="alert"
|
role="alert"
|
||||||
aria-label="Loading new page"
|
aria-label="Loading new page"
|
||||||
|
@click="captureClick"
|
||||||
v-bind:class="[
|
v-bind:class="[
|
||||||
this.loaderColor,
|
this.loaderColor,
|
||||||
this.loaderPosition,
|
this.loaderPosition,
|
||||||
|
|
@ -30,6 +31,13 @@ export default {
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
methods: {
|
||||||
|
captureClick(event) {
|
||||||
|
if (!this.allowPageInteraction) {
|
||||||
|
event.stopPropagation();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue