add-exist-user-modal.js 710 Bytes
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
commonModule.directive('addExistUserModal', ['$log',
    function ($log) {
        'use strict';
        $log.debug('addExistUserModal.ctor()...');

        return {
            restrict: 'E',
            templateUrl: '/app/common/controls/add-exist-user-modal/add-exist-user-modal.html' + '?_=' + Math.random(),
            replace: true,
            controller: 'addExistUserModalController',
            scope:
            {
                operateType: '=',
                isUpdate: '=?',
                selectedUserList: '=?',
                selectedKeyItems: '=?',
                allowUncheck: '=?',
            },
            link: function (scope, element) {


            }
        };
    }
]);