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