Skip to content

Commit 31006e1

Browse files
committed
Merge branch 'develop'
2 parents 7a7a959 + 6745d06 commit 31006e1

File tree

6 files changed

+3770
-4093
lines changed

6 files changed

+3770
-4093
lines changed

dist/authentication-guard.esm.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2786,6 +2786,12 @@ var script = {
27862786
VDialog: VDialog
27872787
},
27882788

2789+
data: function data() {
2790+
return {
2791+
top: this.$vuetify.application.top,
2792+
}
2793+
},
2794+
27892795
computed: Object.assign({}, mapState("auth", ["config", "tab"]),
27902796
mapGetters("auth", [
27912797
"isLoading",
@@ -2819,6 +2825,14 @@ var script = {
28192825
this.initializeGuard();
28202826
},
28212827

2828+
beforeUpdate: function beforeUpdate() {
2829+
if (this.top === 0) { this.top = this.$vuetify.application.top; }
2830+
},
2831+
2832+
updated: function updated() {
2833+
if (this.top !== 0) { this.$vuetify.application.top = this.top; }
2834+
},
2835+
28222836
methods: Object.assign({}, mapActions("auth", ["initializeGuard", "loginWithEmail", "registerUser", "signOut", "sendVerificationEmail"]),
28232837
mapMutations("auth", ["SET_TAB", "SET_USER", "SET_AUTH_GUARD_DIALOG_SHOWN", "SET_PASSWORD_RESET_SCREEN_SHOWN"])),
28242838
};

dist/authentication-guard.min.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2789,6 +2789,12 @@ var AuthGuard = (function (exports, Vue, Vuex, auth, lib) {
27892789
VDialog: lib.VDialog
27902790
},
27912791

2792+
data: function data() {
2793+
return {
2794+
top: this.$vuetify.application.top,
2795+
}
2796+
},
2797+
27922798
computed: Object.assign({}, Vuex.mapState("auth", ["config", "tab"]),
27932799
Vuex.mapGetters("auth", [
27942800
"isLoading",
@@ -2822,6 +2828,14 @@ var AuthGuard = (function (exports, Vue, Vuex, auth, lib) {
28222828
this.initializeGuard();
28232829
},
28242830

2831+
beforeUpdate: function beforeUpdate() {
2832+
if (this.top === 0) { this.top = this.$vuetify.application.top; }
2833+
},
2834+
2835+
updated: function updated() {
2836+
if (this.top !== 0) { this.$vuetify.application.top = this.top; }
2837+
},
2838+
28252839
methods: Object.assign({}, Vuex.mapActions("auth", ["initializeGuard", "loginWithEmail", "registerUser", "signOut", "sendVerificationEmail"]),
28262840
Vuex.mapMutations("auth", ["SET_TAB", "SET_USER", "SET_AUTH_GUARD_DIALOG_SHOWN", "SET_PASSWORD_RESET_SCREEN_SHOWN"])),
28272841
};

dist/authentication-guard.umd.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2792,6 +2792,12 @@
27922792
VDialog: lib.VDialog
27932793
},
27942794

2795+
data: function data() {
2796+
return {
2797+
top: this.$vuetify.application.top,
2798+
}
2799+
},
2800+
27952801
computed: Object.assign({}, Vuex.mapState("auth", ["config", "tab"]),
27962802
Vuex.mapGetters("auth", [
27972803
"isLoading",
@@ -2825,6 +2831,14 @@
28252831
this.initializeGuard();
28262832
},
28272833

2834+
beforeUpdate: function beforeUpdate() {
2835+
if (this.top === 0) { this.top = this.$vuetify.application.top; }
2836+
},
2837+
2838+
updated: function updated() {
2839+
if (this.top !== 0) { this.$vuetify.application.top = this.top; }
2840+
},
2841+
28282842
methods: Object.assign({}, Vuex.mapActions("auth", ["initializeGuard", "loginWithEmail", "registerUser", "signOut", "sendVerificationEmail"]),
28292843
Vuex.mapMutations("auth", ["SET_TAB", "SET_USER", "SET_AUTH_GUARD_DIALOG_SHOWN", "SET_PASSWORD_RESET_SCREEN_SHOWN"])),
28302844
};

0 commit comments

Comments
 (0)