本文整理汇总了TypeScript中ng-dialog.IDialogService类的典型用法代码示例。如果您正苦于以下问题:TypeScript IDialogService类的具体用法?TypeScript IDialogService怎么用?TypeScript IDialogService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了IDialogService类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: editLoadout
vm.editLoadout = function editLoadout(loadout: Loadout) {
ngDialog.closeAll();
$rootScope.$broadcast('dim-edit-loadout', {
loadout,
showClass: true
});
};
开发者ID:delphiactual,项目名称:DIM,代码行数:7,代码来源:loadout-popup.component.ts
示例2: startFarming
vm.startFarming = function startFarming() {
ngDialog.closeAll();
(vm.store.destinyVersion === 2 ? D2FarmingService : dimFarmingService).start({
membershipId: $stateParams.membershipId,
platformType: $stateParams.platformType
}, vm.store.id);
};
开发者ID:delphiactual,项目名称:DIM,代码行数:7,代码来源:loadout-popup.component.ts
示例3: applyLoadout
vm.applyLoadout = function applyLoadout(loadout, $event, filterToEquipped) {
$event.preventDefault();
ngDialog.closeAll();
dimFarmingService.stop();
D2FarmingService.stop();
if (filterToEquipped) {
loadout = filterLoadoutToEquipped(loadout);
}
dimLoadoutService.applyLoadout(vm.store, loadout, true).then(() => {
vm.previousLoadout = _.last(dimLoadoutService.previousLoadouts[vm.store.id]);
});
};
开发者ID:delphiactual,项目名称:DIM,代码行数:14,代码来源:loadout-popup.component.ts
示例4: newLoadoutFromEquipped
vm.newLoadoutFromEquipped = function newLoadoutFromEquipped($event: IAngularEvent) {
ngDialog.closeAll();
const loadout = filterLoadoutToEquipped(vm.store.loadoutFromCurrentlyEquipped(""));
// We don't want to prepopulate the loadout with a bunch of cosmetic junk
// like emblems and ships and horns.
loadout.items = _.pick(loadout.items,
'class',
'kinetic',
'energy',
'power',
'primary',
'special',
'heavy',
'helmet',
'gauntlets',
'chest',
'leg',
'classitem',
'artifact',
'ghost');
loadout.classType = vm.classTypeId;
vm.editLoadout(loadout, $event);
};
开发者ID:delphiactual,项目名称:DIM,代码行数:24,代码来源:loadout-popup.component.ts
示例5: queueAction
vm.pullFromPostmaster = () => {
ngDialog.closeAll();
return queueAction(() => pullFromPostmaster(vm.store, dimItemService, toaster));
};
开发者ID:delphiactual,项目名称:DIM,代码行数:4,代码来源:loadout-popup.component.ts
示例6: newLoadout
vm.newLoadout = function newLoadout($event: IAngularEvent) {
ngDialog.closeAll();
vm.editLoadout({}, $event);
};
开发者ID:delphiactual,项目名称:DIM,代码行数:4,代码来源:loadout-popup.component.ts
注:本文中的ng-dialog.IDialogService类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论