|
@@ -9,10 +9,6 @@ import {
|
|
Message
|
|
Message
|
|
} from 'phosphor/lib/core/messaging';
|
|
} from 'phosphor/lib/core/messaging';
|
|
|
|
|
|
-import {
|
|
|
|
- defineSignal, ISignal
|
|
|
|
-} from 'phosphor/lib/core/signaling';
|
|
|
|
-
|
|
|
|
import {
|
|
import {
|
|
Panel
|
|
Panel
|
|
} from 'phosphor/lib/ui/panel';
|
|
} from 'phosphor/lib/ui/panel';
|
|
@@ -57,11 +53,6 @@ class ConsolePanel extends Panel {
|
|
this.addWidget(this._content);
|
|
this.addWidget(this._content);
|
|
}
|
|
}
|
|
|
|
|
|
- /**
|
|
|
|
- * A signal emitted when the console panel has been activated.
|
|
|
|
- */
|
|
|
|
- activated: ISignal<ConsolePanel, void>;
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* The console widget used by the panel.
|
|
* The console widget used by the panel.
|
|
*
|
|
*
|
|
@@ -92,7 +83,6 @@ class ConsolePanel extends Panel {
|
|
*/
|
|
*/
|
|
protected onActivateRequest(msg: Message): void {
|
|
protected onActivateRequest(msg: Message): void {
|
|
this.content.activate();
|
|
this.content.activate();
|
|
- this.activated.emit(void 0);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -125,10 +115,6 @@ class ConsolePanel extends Panel {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-// Define the signals for the `ConsolePanel` class.
|
|
|
|
-defineSignal(ConsolePanel.prototype, 'activated');
|
|
|
|
-
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* A namespace for ConsolePanel statics.
|
|
* A namespace for ConsolePanel statics.
|
|
*/
|
|
*/
|