settings: add title and authors
This commit is contained in:
parent
8d6397d1ac
commit
8d14339dc8
6 changed files with 23 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Reference in a new issue