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

View file

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