settings: add title and authors

This commit is contained in:
nemunaire 2017-04-02 11:40:23 +02:00 committed by Pierre-Olivier Mercier
commit 8d14339dc8
6 changed files with 23 additions and 3 deletions

View file

@ -129,6 +129,9 @@ angular.module("FICApp")
$http.get("/stats.json").success(function(stats) {
$scope.stats = stats;
});
$http.get("/settings.json").success(function(settings) {
$scope.settings = settings;
});
$http.get("/themes.json").then(function(response) {
if ($scope.lastthemeetag == response.headers().etag)
return;