﻿"use strict";

// Directive for username
app.directive("username", ["$rootScope", function ($rootScope) {
    return {
        restrict: 'A',
        scope: false,
        templateUrl: $rootScope.localizeUrl('/spa-app/views/fragments/html/username')
    }
}]);