本文整理汇总了TypeScript中mousetrap.reset函数的典型用法代码示例。如果您正苦于以下问题:TypeScript reset函数的具体用法?TypeScript reset怎么用?TypeScript reset使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了reset函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: reset
app.onPageAfterAnimation('index', (page) => {
$('.searchbar-input input').focus()
Mousetrap.reset()
reset()
bindKeyboard()
correctPosition()
})
开发者ID:musicope,项目名称:game,代码行数:7,代码来源:app.ts
示例2: autorun
autorun(() => {
Mousetrap.reset();
values(instumentShortcuts.get()).forEach(shortcut => {
if (shortcut.keybinding) {
Mousetrap.bind(shortcut.keybinding, () => {
executeShortcut(shortcut);
return false;
});
}
});
});
开发者ID:eez-open,项目名称:studio,代码行数:12,代码来源:mousetrap.ts
示例3: configureCommands
function configureCommands(newSettings: Settings, commands: Command[]) {
Mousetrap.reset();
Mousetrap.bind("backspace", e => {
if (e.preventDefault) {
e.preventDefault();
} else {
// internet explorer
e.returnValue = false;
}
});
commands.forEach(command => {
const commandSetting = _.find(
newSettings.Commands,
c => c.Name == command.Id
);
if (commandSetting) {
command.KeyBinding = commandSetting.KeyBinding;
command.ShowOnActionBar(commandSetting.ShowOnActionBar);
}
Mousetrap.bind(command.KeyBinding, command.ActionBinding);
});
}
开发者ID:zipzav,项目名称:improved-initiative,代码行数:24,代码来源:Settings.ts
示例4:
$rootScope.$on('$routeChangeSuccess', () => {
Mousetrap.reset();
// rebind global shortcuts
this.setupGlobal();
});
开发者ID:navedalam,项目名称:grafana,代码行数:5,代码来源:keybindingSrv.ts
注:本文中的mousetrap.reset函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论