mirror of
https://github.com/fergalmoran/ferglie.git
synced 2025-12-22 09:17:55 +00:00
1 line
203 B
JavaScript
1 line
203 B
JavaScript
'use strict';angular.module('shortioApp').controller('HeaderCtrl',function($scope,$modal,AuthUser){$scope.username=AuthUser.username;$scope.doLogin=function(){$modal.open({templateUrl:"/tpl/login"});}}); |