remove redundant comment
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
b868617ba3
commit
004d954a5b
|
@ -65,13 +65,7 @@ export class ModalManager {
|
||||||
private staticModal: IModal<any> = null;
|
private staticModal: IModal<any> = null;
|
||||||
// A list of the modals we have stacked up, with the most recent at [0]
|
// A list of the modals we have stacked up, with the most recent at [0]
|
||||||
// Neither the static nor priority modal will be in this list.
|
// Neither the static nor priority modal will be in this list.
|
||||||
private modals: IModal<any>[] = [
|
private modals: IModal<any>[] = [];
|
||||||
/* {
|
|
||||||
elem: React component for this dialog
|
|
||||||
onFinished: caller-supplied onFinished callback
|
|
||||||
className: CSS class for the dialog wrapper div
|
|
||||||
} */
|
|
||||||
];
|
|
||||||
|
|
||||||
private static getOrCreateContainer() {
|
private static getOrCreateContainer() {
|
||||||
let container = document.getElementById(DIALOG_CONTAINER_ID);
|
let container = document.getElementById(DIALOG_CONTAINER_ID);
|
||||||
|
|
Loading…
Reference in New Issue