commonModule.directive('addEnterpriseAccountModal', ['$log', function ($log) { 'use strict'; $log.debug('addExistUserModal.ctor()...'); return { restrict: 'E', templateUrl: '/app/common/controls/add-enterprise-account-modal/add-enterprise-account-modal.html' + '?_=' + Math.random(), replace: true, controller: 'addEnterpriseAccountModalController', scope: { operateType: '=', isUpdate: '=?' }, link: function (scope, element) { } }; } ]);