Browse Source

add new dashboard shortcut

Mitsuhiro Tanda 8 years ago
parent
commit
e8157f01ec
1 changed files with 4 additions and 0 deletions
  1. 4 0
      public/app/core/services/keybindingSrv.ts

+ 4 - 0
public/app/core/services/keybindingSrv.ts

@@ -193,6 +193,10 @@ export class KeybindingSrv {
       }
       }
     });
     });
 
 
+    this.bind('d n', e => {
+      this.$location.url("/dashboard/new");
+    });
+
     this.bind('d r', () => {
     this.bind('d r', () => {
       scope.broadcastRefresh();
       scope.broadcastRefresh();
     });
     });