# HG changeset patch # User Markus Kottlaender # Date 1542804270 -3600 # Node ID 76bc179c181f24999592ab88b41a1d2e9931e8ab # Parent 00a38b354ab7b4120c61479d6756ca2a07b3670c made toolbar expandable diff -r 00a38b354ab7 -r 76bc179c181f client/src/store/application.js --- a/client/src/store/application.js Wed Nov 21 13:40:10 2018 +0100 +++ b/client/src/store/application.js Wed Nov 21 13:44:30 2018 +0100 @@ -30,6 +30,7 @@ showLayers: true, showPdfTool: false, showInContextBox: null, // bottlenecks, imports, staging + expandToolbar: false, countries: ["AT", "SK", "HU", "HR", "RS", "BiH", "BG", "RO", "UA"], searchQuery: "", version @@ -79,6 +80,9 @@ state.showSearchbarLastState = state.showSearchbar; } }, + expandToolbar: (state, expandToolbar) => { + state.expandToolbar = expandToolbar; + }, searchQuery: (state, searchQuery) => { state.searchQuery = searchQuery; } diff -r 00a38b354ab7 -r 76bc179c181f client/src/toolbar/Toolbar.vue --- a/client/src/toolbar/Toolbar.vue Wed Nov 21 13:40:10 2018 +0100 +++ b/client/src/toolbar/Toolbar.vue Wed Nov 21 13:44:30 2018 +0100 @@ -1,17 +1,32 @@