Browse Source

Fix broken console example build.

A. Darian 8 years ago
parent
commit
069f969ad8
1 changed files with 0 additions and 21 deletions
  1. 0 21
      examples/console/src/index.ts

+ 0 - 21
examples/console/src/index.ts

@@ -114,22 +114,6 @@ function startApp(session: ISession) {
       text: 'Execute Prompt',
       shortcut: 'Shift Enter',
       handler: () => { consolePanel.content.execute(); }
-    },
-    {
-      category: 'Console',
-      text: 'Toggle Inspector',
-      shortcut: 'Accel I',
-      handler: () => { consolePanel.toggleInspectors(); }
-    },
-    {
-      category: 'Console',
-      text: 'Position Inspector Vertically',
-      handler: () => { consolePanel.reorient('vertical'); }
-    },
-    {
-      category: 'Console',
-      text: 'Position Inspector Horizontally',
-      handler: () => { consolePanel.reorient('horizontal'); }
     }
   ];
   pModel.addItems(items);
@@ -145,11 +129,6 @@ function startApp(session: ISession) {
       sequence: ['Shift Enter'],
       handler: () => { consolePanel.content.execute(); }
     },
-    {
-      selector: '.jp-ConsolePanel',
-      sequence: ['Accel I'],
-      handler: () => { consolePanel.toggleInspectors(); }
-    },
     {
       selector: 'body',
       sequence: ['Escape'],