add frontend config

This commit is contained in:
Peter Grassberger 2019-02-18 16:48:15 +01:00
parent 01779e3133
commit 696702a0c8
5 changed files with 13 additions and 4 deletions

View File

@ -31,6 +31,8 @@ var styles = [
];
module.exports = function(grunt) {
scripts.unshift(grunt.option('configPath') || 'src/js/defaultConfig.js');
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: {

View File

@ -4,6 +4,11 @@
var netStatsApp = angular.module('netStatsApp', ['netStatsApp.filters', 'netStatsApp.directives', 'ngStorage']);
netStatsApp.run(function($rootScope) {
$rootScope.networkName = networkName || 'Ethereum';
$rootScope.faviconPath = faviconPath || '/favicon.ico';
});
/* Services */

2
src/js/defaultConfig.js Normal file
View File

@ -0,0 +1,2 @@
var networkName = 'Ethereum';
var faviconPath = '/favicon.ico';

View File

@ -3,12 +3,12 @@ doctype html
html(ng-app="netStatsApp")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0, maximum-scale=1.0")
title Ethereum Network Status
title {{ $root.networkName }} Network Status
style(type="text/css") [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { display: none !important; }
link(rel='stylesheet', href='/css/netstats.min.css')
meta(name='robots', content='index,follow')
meta(name='googlebot', content='index,follow')
link(rel='shortcut icon', type="image/x-icon", href="/favicon.ico")
link(rel='shortcut icon', type="image/x-icon", href="{{$root.faviconPath}}")
body
block content
script(src="/js/netstats.min.js")

View File

@ -3,12 +3,12 @@ doctype html
html(ng-app="netStatsApp")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0, maximum-scale=1.0")
title Testnet Network Status
title {{ $root.networkName }} Network Status
style(type="text/css") [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { display: none !important; }
link(rel='stylesheet', href='/css/netstats.min.css')
meta(name='robots', content='index,follow')
meta(name='googlebot', content='index,follow')
link(rel='shortcut icon', type="image/x-icon", href="/favicon.ico")
link(rel='shortcut icon', type="image/x-icon", href="{{$root.faviconPath}}")
body
block content
script(src="/js/netstats.min.js")