FossilOrigin-Name: 1347512fa601971a2b059929d532efbc74b254262bd0b6eef92e629df89a82f7
This commit is contained in:
7u83@mail.ru
2015-04-26 06:40:59 +00:00
parent f53f51be6c
commit f1feb4bc0d
9 changed files with 184 additions and 0 deletions

9
src/webui/controller.js Normal file
View File

@ -0,0 +1,9 @@
'use strict';
// definieren eines Moduls
var helloWorldModule = angular.module("helloWorldModule", []);
// hinzufügen eines Controllers zum Modul
helloWorldModule.controller("HelloWorldController", function ($scope) {
$scope.name = "World";
});