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