Configuration for the client.

This commit is contained in:
Your Name 2014-05-31 19:19:36 +02:00
parent 637fd10606
commit 249275bc0a
13 changed files with 53 additions and 28 deletions
app/scripts/directives

View file

@ -2,7 +2,8 @@
angular.module('ffffng')
.directive('fNavbar', function (Navigator) {
var ctrl = function ($scope) {
var ctrl = function ($scope, config) {
$scope.config = config;
$scope.goHome = function () {
Navigator.home();
};