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