creating basic controllers

This commit is contained in:
Gustavo Cortez 2014-03-26 09:18:42 -03:00
commit 7bef363585
9 changed files with 100 additions and 30 deletions

6
js/controllers/send.js Normal file
View file

@ -0,0 +1,6 @@
'use strict';
angular.module('cosign.send').controller('SendController',
function($scope, $rootScope, $location) {
$scope.title = 'Send';
});