当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript template.close方法代码示例

本文整理汇总了TypeScript中entcore.template.close方法的典型用法代码示例。如果您正苦于以下问题:TypeScript template.close方法的具体用法?TypeScript template.close怎么用?TypeScript template.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在entcore.template的用法示例。


在下文中一共展示了template.close方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: function

	$scope.showFavoriteForm = function() {
		$scope.display.searchmobile = true;
		$scope.display.creatingFavorite = true;
		template.close('list');
		template.close('dominosUser');
		template.close('dominosGroup');
		template.open('list', 'favorite-form');
		$scope.scroolTop();
	}
开发者ID:entcore,项目名称:entcore,代码行数:9,代码来源:directory.ts

示例2: function

 scope.redirectToPreviousCopy = function() {
     template.close("main");
     let index = findCopyIndexOfCurrentCopy() - 1;
      $timeout(function(){
          $location.path('/subject/copy/view/'+ scope.subjectScheduled.subject_id + '/' +  subjectCopyList[index].id + '/');
      },50);
 };
开发者ID:OPEN-ENT-NG,项目名称:exercizer,代码行数:7,代码来源:subjectViewCopyTeacherHeader.ts

示例3: async

 $scope.updateFolder = async () => {
     await $scope.targetFolder.update();
     await $scope.refreshFolders();
     $scope.lightbox.show = false;
     template.close('lightbox');
     $scope.$apply();
 }
开发者ID:entcore,项目名称:entcore,代码行数:7,代码来源:controller.ts

示例4: function

 $scope.unblockUsers = function () {
     directoryService.blockUsers(false, selection).then(() => {
         $scope.reloadClassroom($scope.selectedClass);
         selection.splice(0, selection.length);
         notify.info('classAdmin.unblock.success');
     }).catch(() => notify.error('classAdmin.unblock.error'));
     template.close('lightbox');
 }
开发者ID:entcore,项目名称:entcore,代码行数:8,代码来源:actions.ts


注:本文中的entcore.template.close方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。