mirror of
https://github.com/fergalmoran/ferglie.git
synced 2026-02-16 12:44:28 +00:00
10 lines
277 B
JavaScript
Executable File
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"});
|
|
}
|
|
});
|