Bump versions by x.(y+1).z for next dev cycle
[dlux.git] / modules / yangui-resources / src / main / resources / yangui / controllers / api / augmentation-modal.controller.js
1 define([], function () {
2     'use strict';
3     angular.module('app.yangui').controller('AugmentationModalCtrl', AugmentationModalCtrl);
4
5     AugmentationModalCtrl.$inject = ['$scope'];
6
7     // todo: comment the whole controller
8     function AugmentationModalCtrl($scope){
9         $scope.init = init;
10
11         function init(node){
12             $scope.node = node;
13         }
14     }
15
16 });