devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 456 B
JavaScript
import { LoadingPanelManagerBase } from '../../common/loading-panel/manager';
import { ClientLoadingPanel } from './panel';
import { ClientStatusBarLoadingPanel } from './status-bar-panel';
export class ClientLoadingPanelManager extends LoadingPanelManagerBase {
constructor(canvas) {
super();
this.loadingPanel = new ClientLoadingPanel(canvas);
this.statusBarLoadingPanel = new ClientStatusBarLoadingPanel();
}
}