user-manage.js 414 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
infrastructureModule.directive('userManage', ['$log',
    function ($log) {
        'use strict';
        $log.debug('userManage.ctor()...');

        return {
            restrict: 'E',
            templateUrl: '/app/admin/infrastructure/userManage/user-manage.html' + '?_=' + Math.random(),
            replace: true,
            scope: {},
            controller: 'UserManageController',
        };
    }
]);