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