Merge branch 'ffrgb-develop' into develop

This commit is contained in:
Nils Stinnesbeck 2019-11-17 11:28:24 +01:00
commit 1347254bb2
Signed by: nils
GPG Key ID: 86D4882C6C6CA48B
27 changed files with 2707 additions and 1911 deletions

View File

@ -2,14 +2,14 @@
# top-most EditorConfig file # top-most EditorConfig file
root = true root = true
charset = utf-8
# Get rid of whitespace to avoid diffs with a bunch of EOL changes
trim_trailing_whitespace = true
[*] [*]
end_of_line = lf end_of_line = lf
insert_final_newline = true insert_final_newline = true
charset = utf-8
# Get rid of whitespace to avoid diffs with a bunch of EOL changes
trim_trailing_whitespace = true
[*.{js,html,scss,json,yml,md}] [*.{js,html,scss,json,yml,md}]
indent_size = 2 indent_size = 2

View File

@ -9,5 +9,6 @@ rules:
"func-names": 0 "func-names": 0
"guard-for-in": 0 "guard-for-in": 0
"no-undefined": 0 "no-undefined": 0
"consistent-return": 0
"no-nested-ternary": 0 "no-nested-ternary": 0
"no-extend-native": ["error", { "exceptions": ["String"] }] "no-extend-native": ["error", { "exceptions": ["String"] }]

View File

@ -4,7 +4,7 @@ dist: trusty
language: node_js language: node_js
node_js: node_js:
- "10" - "12"
os: os:
- linux - linux
@ -12,11 +12,10 @@ os:
matrix: matrix:
include: include:
- node_js: 8 - node_js: "8"
os: linux os: linux
- node_js: 6 - node_js: "10"
os: linux os: linux
cache: cache:
yarn: true yarn: true

View File

@ -1,7 +1,6 @@
# Meshviewer # Meshviewer
[![Build Status](https://img.shields.io/travis/ffrgb/meshviewer/develop.svg?style=flat-square)](https://travis-ci.org/ffrgb/meshviewer) [![Build Status](https://img.shields.io/travis/com/ffrgb/meshviewer/develop.svg?style=flat-square)](https://travis-ci.com/ffrgb/meshviewer)
[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/ffrgb/meshviewer/develop.svg?style=flat-square)](https://scrutinizer-ci.com/g/ffrgb/meshviewer/?branch=develop) [![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/ffrgb/meshviewer/develop.svg?style=flat-square)](https://scrutinizer-ci.com/g/ffrgb/meshviewer/?branch=develop)
[![Documentation](https://img.shields.io/badge/documentation-online-brightgreen.svg?style=flat-square)](https://doc.meshviewer.org/)
[![License: AGPL v3](https://img.shields.io/github/license/ffrgb/meshviewer.svg?style=flat-square)](https://www.gnu.org/licenses/agpl-3.0) [![License: AGPL v3](https://img.shields.io/github/license/ffrgb/meshviewer.svg?style=flat-square)](https://www.gnu.org/licenses/agpl-3.0)
Meshviewer is an online visualization app to represent nodes and links on a map for Freifunk open mesh network. Meshviewer is an online visualization app to represent nodes and links on a map for Freifunk open mesh network.
@ -11,30 +10,11 @@ Meshviewer is an online visualization app to represent nodes and links on a map
Embedded: https://regensburg.freifunk.net/netz/karte/ Embedded: https://regensburg.freifunk.net/netz/karte/
Standalone: https://regensburg.freifunk.net/meshviewer/ Standalone: https://regensburg.freifunk.net/meshviewer/
## Documentation
Documentation moved to [doc.meshviewer.org](https://doc.meshviewer.org/).
- [Read online](https://doc.meshviewer.org/)
- Export as
- [PDF](https://doc.meshviewer.org/meshviewer.pdf)
- [ePub](https://doc.meshviewer.org/meshviewer.epub)
- [Mobi](https://doc.meshviewer.org/meshviewer.mobi)
### [Changelog](https://doc.meshviewer.org/changelog.html)
#### Why move the documentation/changelog?
- Search available
- Multiple pages
- Less doc commits, faster changes
## Sponsoring / Supporting ## Sponsoring / Supporting
- [BrowserStack](https://www.browserstack.com/) for providing an awesome testing service for hundreds of browsers - [BrowserStack](https://www.browserstack.com/) for providing an awesome testing service for hundreds of browsers
- [Travis CI](https://travis-ci.org/) for building meshviewer on every push and pull request - [Travis CI](https://travis-ci.com/) for building meshviewer on every push and pull request
- [Scrutinizer CI](https://scrutinizer-ci.com/g/ffrgb/meshviewer/) for testing code quality on every push and pull request - [Scrutinizer CI](https://scrutinizer-ci.com/g/ffrgb/meshviewer/) for testing code quality on every push and pull request
- [POEditor](https://poeditor.com/join/project/VZBjPNNic9) for providing an easy non-developer translation environment - [POEditor](https://poeditor.com/join/project/VZBjPNNic9) for providing an easy non-developer translation environment
- [Netlify](https://app.netlify.com/sites/meshviewer/deploys) preview for every PR and also provide a [page with current develop branch](https://meshviewer.netlify.com/)
These tools need a lot of infrastructures and provide a free account for open source software. These tools need a lot of infrastructures and provide a free account for open source software.

22
app.js
View File

@ -9,21 +9,21 @@ require.config({
'moment': '../node_modules/moment/moment', 'moment': '../node_modules/moment/moment',
// d3 modules indirect dependencies // d3 modules indirect dependencies
// by d3-zoom: d3-drag // by d3-zoom: d3-drag
'd3-ease': '../node_modules/d3-ease/build/d3-ease', 'd3-ease': '../node_modules/d3-ease/dist/d3-ease',
'd3-transition': '../node_modules/d3-transition/build/d3-transition', 'd3-transition': '../node_modules/d3-transition/dist/d3-transition',
'd3-color': '../node_modules/d3-color/build/d3-color', 'd3-color': '../node_modules/d3-color/dist/d3-color',
'd3-interpolate': '../node_modules/d3-interpolate/build/d3-interpolate', 'd3-interpolate': '../node_modules/d3-interpolate/dist/d3-interpolate',
// by d3-force // by d3-force
'd3-collection': '../node_modules/d3-collection/build/d3-collection', 'd3-collection': '../node_modules/d3-collection/dist/d3-collection',
'd3-dispatch': '../node_modules/d3-dispatch/build/d3-dispatch', 'd3-dispatch': '../node_modules/d3-dispatch/dist/d3-dispatch',
'd3-quadtree': '../node_modules/d3-quadtree/build/d3-quadtree', 'd3-quadtree': '../node_modules/d3-quadtree/dist/d3-quadtree',
'd3-timer': '../node_modules/d3-timer/build/d3-timer', 'd3-timer': '../node_modules/d3-timer/dist/d3-timer',
// by d3-drag: d3-selection // by d3-drag: d3-selection
// d3 modules dependencies // d3 modules dependencies
'd3-selection': '../node_modules/d3-selection/dist/d3-selection', 'd3-selection': '../node_modules/d3-selection/dist/d3-selection',
'd3-force': '../node_modules/d3-force/build/d3-force', 'd3-force': '../node_modules/d3-force/dist/d3-force',
'd3-zoom': '../node_modules/d3-zoom/build/d3-zoom', 'd3-zoom': '../node_modules/d3-zoom/dist/d3-zoom',
'd3-drag': '../node_modules/d3-drag/build/d3-drag', 'd3-drag': '../node_modules/d3-drag/dist/d3-drag',
'snabbdom': '../node_modules/snabbdom/dist/snabbdom-patch', 'snabbdom': '../node_modules/snabbdom/dist/snabbdom-patch',
'rbush': '../node_modules/rbush/rbush', 'rbush': '../node_modules/rbush/rbush',
'helper': 'utils/helper' 'helper': 'utils/helper'

View File

@ -81,8 +81,8 @@ module.exports = function () {
'value': 'Autoupdate' 'value': 'Autoupdate'
}, },
{ {
'name': 'node.site', 'name': 'node.domain',
'value': 'Site' 'value': 'Domain'
}, },
{ {
'name': 'node.clients', 'name': 'node.clients',

View File

@ -71,7 +71,7 @@ module.exports = function () {
7.1919 7.1919
] ]
], ],
'siteNames': [ 'domainNames': [
{ {
'site': 'tdf', 'site': 'tdf',
'name': 'Troisdorf' 'name': 'Troisdorf'

View File

@ -11,7 +11,6 @@ module.exports = function () {
html: ['html/*.html', './config*.js'] html: ['html/*.html', './config*.js']
}, },
clean: [build + '/*.map', build + '/vendor', build + '/main.css'], clean: [build + '/*.map', build + '/vendor', build + '/main.css'],
autoprefixer: ['> 1% in DE'],
browsersync: { browsersync: {
open: false, open: false,
server: { server: {

View File

@ -20,8 +20,8 @@ var stringify = function (obj) {
module.exports = function (gulp, plugins, config, env) { module.exports = function (gulp, plugins, config, env) {
return function html() { return function html() {
return gulp.src(env.production() ? config.build + '/*.html' : 'html/*.html') return gulp.src(env.production() ? config.build + '/*.html' : 'html/*.html')
.pipe(env.production(plugins.kyhInlineSource({ compress: false })))
.pipe(plugins.realFavicon.injectFaviconMarkups(JSON.parse(fs.readFileSync(config.faviconData)).favicon.html_code)) .pipe(plugins.realFavicon.injectFaviconMarkups(JSON.parse(fs.readFileSync(config.faviconData)).favicon.html_code))
.pipe(env.production(plugins.inlineSource({ compress: false })))
.pipe(plugins.inject(gulp.src(['config.js']), { .pipe(plugins.inject(gulp.src(['config.js']), {
removeTags: true, removeTags: true,
starttag: '<!-- inject:config -->', starttag: '<!-- inject:config -->',

View File

@ -9,7 +9,7 @@
<body> <body>
<div class="loader"> <div class="loader">
<p> <p>
Your are Offline!<br /> You are Offline!<br />
<img inline src="logo.svg" class="spinner" alt="Loading ..."/> <img inline src="logo.svg" class="spinner" alt="Loading ..."/>
<br /> <br />
No connection available. No connection available.

View File

@ -12,8 +12,8 @@ define(function () {
'</p>' + '</p>' +
'<h4>' + _.t('node.clients') + '</h4>' + '<h4>' + _.t('node.clients') + '</h4>' +
'<p class="legend">' + '<p class="legend">' +
'<span class="legend-24ghz"><span class="symbol"></span> 2.4 Ghz</span>' + '<span class="legend-24ghz"><span class="symbol"></span> 2.4 GHz</span>' +
'<span class="legend-5ghz"><span class="symbol"></span> 5 Ghz</span>' + '<span class="legend-5ghz"><span class="symbol"></span> 5 GHz</span>' +
'<span class="legend-others"><span class="symbol"></span> ' + _.t('others') + '</span>' + '<span class="legend-others"><span class="symbol"></span> ' + _.t('others') + '</span>' +
'</p>' + '</p>' +
'<h3>AGPL 3</h3>' + '<h3>AGPL 3</h3>' +

View File

@ -10,7 +10,7 @@ define(['infobox/link', 'infobox/node', 'infobox/location'], function (Link, Nod
function destroy() { function destroy() {
if (el && el.parentNode) { if (el && el.parentNode) {
el.parentNode.removeChild(el); el.parentNode.removeChild(el);
el = undefined; node = link = el = undefined;
sidebar.reveal(); sidebar.reveal();
} }
} }

View File

@ -70,7 +70,19 @@ define(['sorttable', 'snabbdom', 'd3-interpolate', 'helper', 'utils/node'],
V.h('td', icons), V.h('td', icons),
V.h('td', nodeLink(n.node)), V.h('td', nodeLink(n.node)),
V.h('td', n.node.clients), V.h('td', n.node.clients),
V.h('td', { style: { color: linkScale((n.link.source_tq + n.link.target_tq) / 2) } }, helper.showTq(n.link.source_tq) + ' - ' + helper.showTq(n.link.target_tq)), V.h('td', [V.h('a', {
style: {
color: linkScale((n.link.source_tq + n.link.target_tq) / 2)
},
props: {
title: n.link.source.hostname + ' - ' + n.link.target.hostname,
href: router.generateLink({ link: n.link.id })
}, on: {
click: function (e) {
router.fullUrl({ link: n.link.id }, e);
}
}
}, helper.showTq(n.link.source_tq) + ' - ' + helper.showTq(n.link.target_tq))]),
V.h('td', helper.showDistance(n.link)) V.h('td', helper.showDistance(n.link))
]); ]);
} }

View File

@ -82,7 +82,11 @@ define(['map/clientlayer', 'map/labellayer', 'map/button', 'leaflet', 'map/activ
if (config.geo) { if (config.geo) {
[].forEach.call(config.geo, function (geo) { [].forEach.call(config.geo, function (geo) {
L.geoJSON(geo.json, geo.option).addTo(map); geo.json().then(function (result) {
if (result) {
L.geoJSON(result, geo.option).addTo(map);
}
});
}); });
} }

View File

@ -1,5 +1,5 @@
define(['leaflet', 'rbush', 'helper'], define(['leaflet', 'rbush', 'helper'],
function (L, rbush, helper) { function (L, RBush, helper) {
'use strict'; 'use strict';
return L.GridLayer.extend({ return L.GridLayer.extend({
@ -11,7 +11,7 @@ define(['leaflet', 'rbush', 'helper'],
}; };
}, },
setData: function (data) { setData: function (data) {
var rtreeOnlineAll = rbush(9); var rtreeOnlineAll = new RBush(9);
this.data = rtreeOnlineAll.load(data.nodes.online.filter(helper.hasLocation).map(this.mapRTree)); this.data = rtreeOnlineAll.load(data.nodes.online.filter(helper.hasLocation).map(this.mapRTree));

View File

@ -1,5 +1,5 @@
define(['leaflet', 'rbush', 'helper', 'moment'], define(['leaflet', 'rbush', 'helper', 'moment'],
function (L, rbush, helper, moment) { function (L, RBush, helper, moment) {
'use strict'; 'use strict';
var groupOnline; var groupOnline;
@ -239,7 +239,7 @@ define(['leaflet', 'rbush', 'helper', 'moment'],
} }
for (var z = minZoom; z <= maxZoom; z++) { for (var z = minZoom; z <= maxZoom; z++) {
trees[z] = rbush(9); trees[z] = new RBush(9);
trees[z].load(labels.map(nodeToRect(z))); trees[z].load(labels.map(nodeToRect(z)));
} }
@ -291,7 +291,7 @@ define(['leaflet', 'rbush', 'helper', 'moment'],
}).sort().reverse()[0]; }).sort().reverse()[0];
} }
this.labels = rbush(9); this.labels = new RBush(9);
this.labels.load(labels.map(mapRTree)); this.labels.load(labels.map(mapRTree));
this.redraw(); this.redraw();

View File

@ -15,7 +15,7 @@ define(['d3-interpolate', 'snabbdom', 'utils/version', 'filters/genericnode', 'h
var autoTable; var autoTable;
var gatewayTable; var gatewayTable;
var gateway6Table; var gateway6Table;
var siteTable; var domainTable;
function count(nodes, key, f) { function count(nodes, key, f) {
var dict = {}; var dict = {};
@ -108,11 +108,12 @@ define(['d3-interpolate', 'snabbdom', 'utils/version', 'filters/genericnode', 'h
return _.t('node.deactivated'); return _.t('node.deactivated');
}); });
var siteDict = count(nodes, ['site_code'], function (d) { var domainDict = count(nodes, ['domain'], function (d) {
if (config.siteNames) { if (config.domainNames) {
config.siteNames.forEach(function (t) { config.domainNames.some(function (t) {
if (d === t.site) { if (d === t.domain) {
d = t.name; d = t.name;
return true;
} }
}); });
} }
@ -138,7 +139,7 @@ define(['d3-interpolate', 'snabbdom', 'utils/version', 'filters/genericnode', 'h
gateway6Table = fillTable('node.selectedGatewayIPv6', gateway6Table, gateway6Dict.sort(function (a, b) { gateway6Table = fillTable('node.selectedGatewayIPv6', gateway6Table, gateway6Dict.sort(function (a, b) {
return b[1] - a[1]; return b[1] - a[1];
})); }));
siteTable = fillTable('node.site', siteTable, siteDict.sort(function (a, b) { domainTable = fillTable('node.domain', domainTable, domainDict.sort(function (a, b) {
return b[1] - a[1]; return b[1] - a[1];
})); }));
}; };
@ -151,7 +152,7 @@ define(['d3-interpolate', 'snabbdom', 'utils/version', 'filters/genericnode', 'h
self.renderSingle(el, 'node.update', autoTable); self.renderSingle(el, 'node.update', autoTable);
self.renderSingle(el, 'node.selectedGatewayIPv4', gatewayTable); self.renderSingle(el, 'node.selectedGatewayIPv4', gatewayTable);
self.renderSingle(el, 'node.selectedGatewayIPv6', gateway6Table); self.renderSingle(el, 'node.selectedGatewayIPv6', gateway6Table);
self.renderSingle(el, 'node.site', siteTable); self.renderSingle(el, 'node.domain', domainTable);
if (config.globalInfos) { if (config.globalInfos) {
var images = document.createElement('div'); var images = document.createElement('div');

View File

@ -68,12 +68,13 @@ define(['snabbdom', 'helper', 'moment'], function (V, helper, moment) {
return showBar(Math.round(d.memory_usage * 100) + ' %', d.memory_usage, d.memory_usage >= 0.8); return showBar(Math.round(d.memory_usage * 100) + ' %', d.memory_usage, d.memory_usage >= 0.8);
}; };
self.showSite = function showSite(d) { self.showDomain = function showDomain(d) {
var rt = d.site_code; var rt = d.domain;
if (config.siteNames) { if (config.domainNames) {
config.siteNames.forEach(function (t) { config.domainNames.some(function (t) {
if (d.site_code === t.site) { if (rt === t.domain) {
rt = t.name; rt = t.name;
return true;
} }
}); });
} }
@ -96,14 +97,14 @@ define(['snabbdom', 'helper', 'moment'], function (V, helper, moment) {
[ [
d.clients_wifi24, d.clients_wifi24,
V.h('br'), V.h('br'),
V.h('span', { props: { className: 'symbol', title: '2,4 Ghz' } }) V.h('span', { props: { className: 'symbol', title: '2,4 GHz' } })
]), ]),
V.h('span', V.h('span',
{ props: { className: 'legend-5ghz' } }, { props: { className: 'legend-5ghz' } },
[ [
d.clients_wifi5, d.clients_wifi5,
V.h('br'), V.h('br'),
V.h('span', { props: { className: 'symbol', title: '5 Ghz' } }) V.h('span', { props: { className: 'symbol', title: '5 GHz' } })
]), ]),
V.h('span', V.h('span',
{ props: { className: 'legend-others' } }, { props: { className: 'legend-others' } },

View File

@ -17,7 +17,7 @@
"hardware": "Model hardwaru", "hardware": "Model hardwaru",
"visible": "Visible on the map", "visible": "Visible on the map",
"update": "Automatický update", "update": "Automatický update",
"site": "Site", "domain": "Domain",
"gateway": "Brána", "gateway": "Brána",
"coordinates": "Souřadnice", "coordinates": "Souřadnice",
"contact": "Kontakt", "contact": "Kontakt",

View File

@ -17,7 +17,7 @@
"hardware": "Geräte-Modell", "hardware": "Geräte-Modell",
"visible": "Auf der Karte sichtbar", "visible": "Auf der Karte sichtbar",
"update": "Auto-Update", "update": "Auto-Update",
"site": "Site", "domain": "Domain",
"gateway": "Gateway", "gateway": "Gateway",
"coordinates": "Koordinaten", "coordinates": "Koordinaten",
"contact": "Kontakt", "contact": "Kontakt",

View File

@ -17,7 +17,7 @@
"hardware": "Hardware model", "hardware": "Hardware model",
"visible": "Visible on the map", "visible": "Visible on the map",
"update": "Auto update", "update": "Auto update",
"site": "Site", "domain": "Domain",
"gateway": "Gateway", "gateway": "Gateway",
"coordinates": "Coordinates", "coordinates": "Coordinates",
"contact": "Contact", "contact": "Contact",

View File

@ -17,7 +17,7 @@
"hardware": "Modèle matériel", "hardware": "Modèle matériel",
"visible": "Visible sur la carte", "visible": "Visible sur la carte",
"update": "Mise à jour automatique", "update": "Mise à jour automatique",
"site": "Site", "domain": "Domain",
"gateway": "Passerelle", "gateway": "Passerelle",
"coordinates": "Coordonnées", "coordinates": "Coordonnées",
"contact": "Contact", "contact": "Contact",

View File

@ -17,7 +17,7 @@
"hardware": "Тип оборудования", "hardware": "Тип оборудования",
"visible": "Видно на карте", "visible": "Видно на карте",
"update": "Автообновление", "update": "Автообновление",
"site": "Сайт", "domain": "Сайт",
"gateway": "Шлюз", "gateway": "Шлюз",
"coordinates": "Координаты", "coordinates": "Координаты",
"contact": "Контакты", "contact": "Контакты",

View File

@ -17,7 +17,7 @@
"hardware": "Donanım modeli", "hardware": "Donanım modeli",
"visible": "Harita üzerinde görünür", "visible": "Harita üzerinde görünür",
"update": "Otomatik güncelleme", "update": "Otomatik güncelleme",
"site": "Site", "domain": "Domain",
"gateway": "Geçit", "gateway": "Geçit",
"coordinates": "Koordinatlar", "coordinates": "Koordinatlar",
"contact": "İlişki", "contact": "İlişki",

View File

@ -1,6 +1,6 @@
{ {
"name": "meshviewer", "name": "meshviewer",
"version": "10.0.0", "version": "11.1.0",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"repository": { "repository": {
"type": "git", "type": "git",
@ -10,29 +10,30 @@
"url": "https://github.com/ffrgb/meshviewer/issues" "url": "https://github.com/ffrgb/meshviewer/issues"
}, },
"devDependencies": { "devDependencies": {
"babel-eslint": "^8.2.6", "babel-eslint": "^10.0.1",
"browser-sync": "^2.24.5", "browser-sync": "^2.26.5",
"eslint": "^5.1.0", "del": "^5.1.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-es5": "^1.2.0", "eslint-config-airbnb-es5": "^1.2.0",
"eslint-config-defaults": "^9.0.0", "eslint-config-defaults": "^9.0.0",
"eslint-plugin-react": "^7.10.0", "eslint-plugin-react": "^7.12.4",
"gulp": "github:gulpjs/gulp#4.0", "gulp": "^4.0.1",
"gulp-autoprefixer": "^5.0.0", "gulp-autoprefixer": "^7.0.1",
"gulp-cache-bust": "^1.3.0", "gulp-cache-bust": "^1.4.0",
"gulp-cli": "^2.0.1", "gulp-cli": "^2.2.0",
"gulp-environments": "^0.1.2", "gulp-environments": "^0.1.2",
"gulp-eslint": "^5.0.0", "gulp-eslint": "^6.0.0",
"gulp-htmlmin": "^4.0.0", "gulp-htmlmin": "^5.0.1",
"gulp-inject": "^4.3.2", "gulp-inject": "^5.0.2",
"gulp-inline-source": "^4.0.0",
"gulp-jsonminify": "^1.1.0", "gulp-jsonminify": "^1.1.0",
"gulp-kyh-inline-source": "^3.0.2", "gulp-load-plugins": "^2.0.1",
"gulp-load-plugins": "^1.5.0", "gulp-real-favicon": "^0.3.2",
"gulp-real-favicon": "^0.3.0",
"gulp-requirejs-optimize": "^1.3.0", "gulp-requirejs-optimize": "^1.3.0",
"gulp-sass": "^4.0.1", "gulp-sass": "^4.0.2",
"gulp-sass-lint": "^1.4.0", "gulp-sass-lint": "^1.4.0",
"gulp-sourcemaps": "^2.6.4", "gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.0" "gulp-uglify": "^3.0.2"
}, },
"eslintConfig": { "eslintConfig": {
"env": { "env": {
@ -44,20 +45,23 @@
}, },
"dependencies": { "dependencies": {
"almond": "^0.3.3", "almond": "^0.3.3",
"d3-drag": "^1.2.1", "d3-drag": "^1.2.4",
"d3-force": "^1.1.0", "d3-force": "^1.2.1",
"d3-selection": "^1.3.0", "d3-selection": "^1.4.0",
"d3-zoom": "^1.7.1", "d3-zoom": "^1.8.3",
"leaflet": "^1.3.3", "leaflet": "^1.5.1",
"moment": "^2.22.2", "moment": "^2.24.0",
"navigo": "^7.1.2", "navigo": "^7.1.2",
"node-polyglot": "2.2.2", "node-polyglot": "2.2.2",
"promise-polyfill": "^8.0.0", "promise-polyfill": "^8.1.3",
"rbush": "^2.0.2", "rbush": "^3.0.1",
"requirejs": "^2.3.5", "requirejs": "^2.3.6",
"snabbdom": "^0.7.1" "snabbdom": "^0.7.3"
}, },
"scripts": { "scripts": {
"gulp": "./node_modules/gulp-cli/bin/gulp.js" "gulp": "./node_modules/gulp-cli/bin/gulp.js"
} },
"browserslist": [
"> 1% in DE"
]
} }

View File

@ -13,6 +13,12 @@ header {
border-bottom: 1px solid darken($color-white, 10%); border-bottom: 1px solid darken($color-white, 10%);
} }
textarea,
input {
background: transparent;
color: $color-black, 100;
}
h1, h1,
h2, h2,
h3, h3,

4399
yarn.lock

File diff suppressed because it is too large Load Diff