Make first controller

This commit is contained in:
manzerbredes 2016-01-24 14:41:00 +01:00
parent 96a8556755
commit b2795163b3
4 changed files with 20 additions and 7 deletions

View file

@ -1 +1,3 @@
angular.module("MainApp",[])
// Declare main app
var mainApp=angular.module("mainApp",[]);

View file

@ -0,0 +1,10 @@
/*
* mainApp Controller
*/
mainApp.controller('mainAppCtrl', function ($scope)
{
// TODO
});