Your IP : 216.73.216.95


Current Path : /var/www/alh/admin/view/journal2/js/directives/search/
Upload File :
Current File : /var/www/alh/admin/view/journal2/js/directives/search/category.js

define(['./../module'], function (module) {
    module
        .directive('categorySearch', ['Search', function (Search) {
            return {
                replace: true,
                restrict: 'E',
                scope: {
                    model: '='
                },
                templateUrl: 'view/journal2/tpl/directives/search/search.html?ver=' + Journal2Config.version,
                controller: function ($scope) {
                    $scope.options = Search.generateOptions('index.php?route=module/journal2/rest/catalog/categories', 'category_id', 'Select category...');
                }
            };
        }]);
});