本文整理汇总了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()
})
示例2: autorun
autorun(() => {
Mousetrap.reset();
values(instumentShortcuts.get()).forEach(shortcut => {
if (shortcut.keybinding) {
Mousetrap.bind(shortcut.keybinding, () => {
executeShortcut(shortcut);
return false;
});
}
});
});
示例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);
});
}
示例4:
$rootScope.$on('$routeChangeSuccess', () => {
Mousetrap.reset();
// rebind global shortcuts
this.setupGlobal();
});