Info about automatic deletion of offline nodes.

This commit is contained in:
baldo 2016-07-29 22:22:51 +02:00
parent be9d0a3aa4
commit cacc3faeb5
3 changed files with 18 additions and 1 deletions
app/scripts/directives

View file

@ -1,8 +1,10 @@
'use strict';
angular.module('ffffng')
.directive('fNodeSaved', function () {
.directive('fNodeSaved', function (config) {
var ctrl = function ($scope, Navigator) {
$scope.config = config;
$scope.goHome = function () {
Navigator.home();
};