annotate client/src/components/App.vue @ 1573:761e8744e1f3

WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 13 Dec 2018 09:15:41 +0100
parents 0ded4c56978e
children a86fd6f62a57
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
1 <template>
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
2 <div id="app" class="main">
1573
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
3 <div v-if="$options.LETITSNOW" id="particles-js"></div>
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
4 <div v-if="isAuthenticated" class="d-flex flex-column userinterface">
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
5 <div class="topbar d-flex pt-3 mx-3">
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
6 <div class="mr-auto d-flex">
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
7 <Sidebar :routeName="routeName"></Sidebar>
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
8 <div class="d-flex flex-column ml-3" style="max-width: 600px">
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
9 <Search v-if="routeName == 'mainview'"></Search>
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
10 <Contextbox v-if="routeName == 'mainview'"></Contextbox>
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
11 </div>
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
12 </div>
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
13 <div class="ml-auto d-flex">
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
14 <div class="d-flex flex-column align-items-end">
1372
553aadd97087 new cross profile workflow (WIP)
Markus Kottlaender <markus@intevation.de>
parents: 1368
diff changeset
15 <Profiles v-if="routeName == 'mainview'"></Profiles>
553aadd97087 new cross profile workflow (WIP)
Markus Kottlaender <markus@intevation.de>
parents: 1368
diff changeset
16 <Pdftool v-if="routeName == 'mainview'"></Pdftool>
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
17 </div>
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
18 <div class="d-flex flex-column align-items-end">
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
19 <Identify v-if="routeName == 'mainview'"></Identify>
1372
553aadd97087 new cross profile workflow (WIP)
Markus Kottlaender <markus@intevation.de>
parents: 1368
diff changeset
20 <Layers v-if="routeName == 'mainview'"></Layers>
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
21 </div>
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
22 <Toolbar v-if="routeName == 'mainview'"></Toolbar>
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
23 </div>
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
24 </div>
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
25 <div class="flex-fill"></div>
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
26 <div class="d-flex flex-row align-items-end">
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
27 <Infobar v-if="routeName == 'mainview'"></Infobar>
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
28 </div>
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
29 <Zoom v-if="routeName == 'mainview'"></Zoom>
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
30 </div>
1480
9b81ac91a43e fix: linting
Thomas Junk <thomas.junk@intevation.de>
parents: 1449
diff changeset
31 <div class="d-flex flex-column"><router-view /></div>
1368
d1d8c7bd16a1 switched from vue2-toastr to vue-snotify
Thomas Junk <thomas.junk@intevation.de>
parents: 1362
diff changeset
32 <vue-snotify></vue-snotify>
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
33 </div>
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
34 </template>
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
35
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
36 <style lang="scss" scoped>
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
37 .userinterface {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
38 position: absolute;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
39 top: 0;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
40 left: 0;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
41 height: 100vh;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
42 width: 100vw;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
43 z-index: 4;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
44 pointer-events: none;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
45 }
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
46
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
47 .topbar {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
48 position: relative;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
49 z-index: 2;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
50 }
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
51
1449
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
52 #app {
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
53 height: 100vh;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
54 width: 100vw;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
55 font-family: "Avenir", Helvetica, Arial, sans-serif;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
56 -webkit-font-smoothing: antialiased;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
57 -moz-osx-font-smoothing: grayscale;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
58 text-align: center;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
59 color: #2c3e50;
bb47531bdd22 sass to scss
Thomas Junk <thomas.junk@intevation.de>
parents: 1372
diff changeset
60 }
1573
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
61
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
62 #particles-js {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
63 position: absolute;
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
64 width: 100%;
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
65 height: 100%;
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
66 background: linear-gradient(
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
67 to bottom,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
68 rgba(117, 114, 113, 0.8) 10%,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
69 rgba(40, 49, 77, 0.8) 30%,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
70 rgba(29, 35, 71, 0.8) 50%,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
71 rgba(19, 25, 28, 0.8) 80%,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
72 rgba(15, 14, 14, 0.8) 100%
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
73 ),
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
74 url(https://38media.tumblr.com/tumblr_m00c3czJkM1qbukryo1_500.gif);
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
75 background-repeat: no-repeat;
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
76 background-size: cover;
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
77 background-position: 50% 50%;
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
78 }
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
79 </style>
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
80
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
81 <script>
1362
ca33ad696594 remove the first empyty lines
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1361
diff changeset
82 /* This is Free Software under GNU Affero General Public License v >= 3.0
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
83 * without warranty, see README.md and license for details.
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
84 *
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
85 * SPDX-License-Identifier: AGPL-3.0-or-later
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
86 * License-Filename: LICENSES/AGPL-3.0.txt
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
87 *
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
88 * Copyright (C) 2018 by via donau
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
89 * – Österreichische Wasserstraßen-Gesellschaft mbH
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
90 * Software engineering by Intevation GmbH
1361
ea3a89a1813a remove trailing whitespace, add headers for Makefile, add the missed authors
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1291
diff changeset
91 *
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
92 * Author(s):
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
93 * Thomas Junk <thomas.junk@intevation.de>
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
94 * Markus Kottländer <markus.kottlaender@intevation.de>
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
95 */
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
96 import { mapState } from "vuex";
1573
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
97 import "particles.js";
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
98
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
99 export default {
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
100 name: "app",
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
101 computed: {
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
102 ...mapState("user", ["isAuthenticated"]),
1282
a7dd8a3356fc fixed contextBox animations
Markus Kottlaender <markus@intevation.de>
parents: 1276
diff changeset
103 ...mapState("application", ["contextBoxContent"]),
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
104 routeName() {
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
105 const routeName = this.$route.name;
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
106 return routeName;
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
107 }
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
108 },
1573
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
109 LETITSNOW: process.env.VUE_APP_LET_IT_SNOW,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
110 mounted() {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
111 if (!this.$options.LETITSNOW) return;
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
112 /* eslint-disable */
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
113 particlesJS("particles-js", {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
114 particles: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
115 number: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
116 value: 200,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
117 density: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
118 enable: true,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
119 value_area: 800
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
120 }
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
121 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
122 color: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
123 value: "#ffffff"
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
124 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
125 shape: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
126 type: "image",
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
127 stroke: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
128 width: 3,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
129 color: "#fff"
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
130 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
131 polygon: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
132 nb_sides: 5
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
133 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
134 image: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
135 src:
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
136 "http://www.dynamicdigital.us/wp-content/uploads/2013/02/starburst_white_300_drop_2.png",
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
137 width: 100,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
138 height: 100
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
139 }
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
140 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
141 opacity: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
142 value: 0.7,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
143 random: false,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
144 anim: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
145 enable: false,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
146 speed: 1,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
147 opacity_min: 0.1,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
148 sync: false
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
149 }
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
150 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
151 size: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
152 value: 5,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
153 random: true,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
154 anim: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
155 enable: false,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
156 speed: 20,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
157 size_min: 0.1,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
158 sync: false
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
159 }
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
160 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
161 line_linked: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
162 enable: false,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
163 distance: 50,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
164 color: "#ffffff",
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
165 opacity: 0.6,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
166 width: 1
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
167 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
168 move: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
169 enable: true,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
170 speed: 5,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
171 direction: "bottom",
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
172 random: true,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
173 straight: false,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
174 out_mode: "out",
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
175 bounce: false,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
176 attract: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
177 enable: true,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
178 rotateX: 300,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
179 rotateY: 1200
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
180 }
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
181 }
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
182 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
183 interactivity: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
184 detect_on: "canvas",
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
185 events: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
186 onhover: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
187 enable: true,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
188 mode: "bubble"
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
189 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
190 onclick: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
191 enable: true,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
192 mode: "repulse"
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
193 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
194 resize: true
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
195 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
196 modes: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
197 grab: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
198 distance: 150,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
199 line_linked: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
200 opacity: 1
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
201 }
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
202 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
203 bubble: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
204 distance: 200,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
205 size: 40,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
206 duration: 2,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
207 opacity: 8,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
208 speed: 3
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
209 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
210 repulse: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
211 distance: 200,
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
212 duration: 0.2
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
213 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
214 push: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
215 particles_nb: 4
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
216 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
217 remove: {
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
218 particles_nb: 2
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
219 }
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
220 }
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
221 },
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
222 retina_detect: true
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
223 });
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
224 /* eslint-enable */
761e8744e1f3 WAMOS CHRISTMAS EDITION. ACTIVATE WITH VUE_APP_LET_IT_SNOW = true in your configuration
Thomas Junk <thomas.junk@intevation.de>
parents: 1558
diff changeset
225 },
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
226 components: {
1558
0ded4c56978e refac: component filestructure. remove admin/map hierarchy
Thomas Junk <thomas.junk@intevation.de>
parents: 1480
diff changeset
227 Profiles: () => import("./fairway/Profiles"),
0ded4c56978e refac: component filestructure. remove admin/map hierarchy
Thomas Junk <thomas.junk@intevation.de>
parents: 1480
diff changeset
228 Infobar: () => import("./fairway/Infobar"),
0ded4c56978e refac: component filestructure. remove admin/map hierarchy
Thomas Junk <thomas.junk@intevation.de>
parents: 1480
diff changeset
229 Pdftool: () => import("./Pdftool"),
0ded4c56978e refac: component filestructure. remove admin/map hierarchy
Thomas Junk <thomas.junk@intevation.de>
parents: 1480
diff changeset
230 Zoom: () => import("./Zoom"),
0ded4c56978e refac: component filestructure. remove admin/map hierarchy
Thomas Junk <thomas.junk@intevation.de>
parents: 1480
diff changeset
231 Identify: () => import("./Identify"),
0ded4c56978e refac: component filestructure. remove admin/map hierarchy
Thomas Junk <thomas.junk@intevation.de>
parents: 1480
diff changeset
232 Layers: () => import("./layers/Layers"),
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
233 Sidebar: () => import("./Sidebar"),
1558
0ded4c56978e refac: component filestructure. remove admin/map hierarchy
Thomas Junk <thomas.junk@intevation.de>
parents: 1480
diff changeset
234 Search: () => import("./Search"),
0ded4c56978e refac: component filestructure. remove admin/map hierarchy
Thomas Junk <thomas.junk@intevation.de>
parents: 1480
diff changeset
235 Contextbox: () => import("./Contextbox"),
0ded4c56978e refac: component filestructure. remove admin/map hierarchy
Thomas Junk <thomas.junk@intevation.de>
parents: 1480
diff changeset
236 Toolbar: () => import("./toolbar/Toolbar")
1272
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
237 }
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
238 };
bc55ffaeb639 cleaned up client/src directory
Markus Kottlaender <markus@intevation.de>
parents:
diff changeset
239 </script>