update(Cms.js/News.js/PhrasenPlugin): removes the reload option, because the content can be newly fetched based on the currently active language

This commit is contained in:
SimonGschnell
2024-12-13 14:41:07 +01:00
parent 701f44c767
commit cb6fca9a2e
11 changed files with 54 additions and 69 deletions
+1 -1
View File
@@ -39,6 +39,6 @@ const app = Vue.createApp({
setScrollbarWidth();
app.use(primevue.config.default, { zIndex: { overlay: 9999 } });
app.use(Phrasen, {reload: true});
app.use(Phrasen);
app.mount("#cms");
//#cms [data-confirm], #cms [data-href]
+1 -1
View File
@@ -89,5 +89,5 @@ const app = Vue.createApp({
setScrollbarWidth();
app.use(Phrasen, {reload: true});
app.use(Phrasen);
app.mount('#content');
+1 -1
View File
@@ -11,4 +11,4 @@ const app = Vue.createApp({
setScrollbarWidth();
app.use(Phrasen, {reload: true}).mount('#content');
app.use(Phrasen).mount('#content');
+1 -1
View File
@@ -161,5 +161,5 @@ const app = Vue.createApp({
</fhc-calendar>
`
});
app.use(Phrasen, {reload: true});
app.use(Phrasen);
app.mount('#content');
+1 -1
View File
@@ -21,5 +21,5 @@ const app = Vue.createApp({
}
});
app
.use(Phrasen, {reload: true})
.use(Phrasen)
.mount('#wrapper');