project-booster-vue 8.128.8 → 8.129.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -352,38 +352,38 @@ export default {
|
|
|
352
352
|
{
|
|
353
353
|
title: 'Cuisine',
|
|
354
354
|
image: 'https://storage.googleapis.com/project-booster-media/landing-projet/projet-cuisine.png',
|
|
355
|
-
href: '/cuisine
|
|
355
|
+
href: '/produits/cuisine/',
|
|
356
356
|
},
|
|
357
357
|
{
|
|
358
358
|
title: 'Salle de bains',
|
|
359
359
|
image: 'https://storage.googleapis.com/project-booster-media/landing-projet/projet-salle_de_bain.png',
|
|
360
|
-
href: '/salle-de-
|
|
360
|
+
href: '/produits/salle-de-bains/',
|
|
361
361
|
},
|
|
362
362
|
{
|
|
363
363
|
title: 'Rangement',
|
|
364
364
|
image: 'https://storage.googleapis.com/project-booster-media/landing-projet/projet-rangement.png',
|
|
365
|
-
href: '/
|
|
365
|
+
href: '/produits/rangement-dressing/',
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
title: 'Aménagement extérieur',
|
|
369
369
|
image: 'https://storage.googleapis.com/project-booster-media/landing-projet/projet-amenagement_exterieur.png',
|
|
370
|
-
href: '/
|
|
370
|
+
href: '/produits/terrasse-jardin/',
|
|
371
371
|
},
|
|
372
372
|
{
|
|
373
373
|
title: 'Menuiserie',
|
|
374
374
|
image: 'https://storage.googleapis.com/project-booster-media/landing-projet/projet-menuiserie.png',
|
|
375
|
-
href: '/
|
|
375
|
+
href: '/produits/menuiserie/',
|
|
376
376
|
},
|
|
377
377
|
{
|
|
378
378
|
title: 'Combles',
|
|
379
379
|
image: 'https://storage.googleapis.com/project-booster-media/landing-projet/projet-materiaux.png',
|
|
380
|
-
href: '/
|
|
380
|
+
href: '/produits/materiaux/',
|
|
381
381
|
},
|
|
382
382
|
],
|
|
383
383
|
toolsCards3: [
|
|
384
384
|
{
|
|
385
385
|
image: 'https://storage.googleapis.com/project-booster-media/landing-projet/artisans-partenaires.png',
|
|
386
|
-
href: '/cuisine
|
|
386
|
+
href: '/produits/cuisine/',
|
|
387
387
|
},
|
|
388
388
|
],
|
|
389
389
|
toolsCards4: [
|
|
@@ -635,10 +635,11 @@ export default {
|
|
|
635
635
|
this.displayDialog = !this.displayDialog;
|
|
636
636
|
this.dialog = answer.viewModel.dialog;
|
|
637
637
|
this.$store.dispatch('sendEventToBus', {
|
|
638
|
-
code: '
|
|
638
|
+
code: 'LINK-CLICKED',
|
|
639
639
|
payload: {
|
|
640
640
|
context: {
|
|
641
641
|
answer: answer,
|
|
642
|
+
questionId: this.stepName,
|
|
642
643
|
},
|
|
643
644
|
},
|
|
644
645
|
});
|
package/src/services/metadata.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export function getMetaDataFromCookies(cookies) {
|
|
2
2
|
let metaData = {
|
|
3
3
|
userAgent: window.navigator.userAgent,
|
|
4
|
-
viewPortHeightPx: window.innerHeight,
|
|
5
|
-
viewPortWidthPx: window.innerWidth,
|
|
4
|
+
viewPortHeightPx: window.innerHeight !== 0 ? window.innerHeight : null,
|
|
5
|
+
viewPortWidthPx: window.innerWidth !== 0 ? window.innerWidth : null,
|
|
6
6
|
};
|
|
7
7
|
|
|
8
8
|
if (process.env.VUE_APP_BUILD_FOR_KOBI) {
|