﻿"use strict";

// Directive for showing accessCode, need this because we are doing angular spa
app.directive("accessCode", ["$rootScope", function ($rootScope) {
    return {
        restrict: "A",
        scope: false,
        templateUrl: $rootScope.localizeUrl("/spa-app/views/fragments/html/accessCode")
    }
}]);