Sfoglia il codice sorgente

shortcuts: change init bind key to d

bergquist 8 anni fa
parent
commit
e828f3a97b
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      public/app/core/services/keybindingSrv.ts

+ 2 - 2
public/app/core/services/keybindingSrv.ts

@@ -188,14 +188,14 @@ export class KeybindingSrv {
     });
     });
 
 
     // collapse all rows
     // collapse all rows
-    this.bind('r C', () => {
+    this.bind('d C', () => {
       _.each(dashboard.rows, function(row) {
       _.each(dashboard.rows, function(row) {
         row.collapse = true;
         row.collapse = true;
       });
       });
     });
     });
 
 
     // expand all rows
     // expand all rows
-    this.bind('r E', () => {
+    this.bind('d E', () => {
       _.each(dashboard.rows, function(row) {
       _.each(dashboard.rows, function(row) {
         row.collapse = false;
         row.collapse = false;
       });
       });