Files
ferglie/static/js/app/controllers/header.js
Fergal Moran 0c4e910b9e MVP Done
2017-05-09 23:31:55 +01:00

10 lines
277 B
JavaScript
Executable File

'use strict';
angular.module('shortioApp')
.controller('HeaderCtrl', function ($scope, $modal, AuthUser) {
$scope.username = AuthUser.username;
$scope.doLogin = function () {
$modal.open({templateUrl: "/tpl/login"});
}
});