mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 09:03:36 +08:00
20 lines
319 B
JavaScript
20 lines
319 B
JavaScript
import Modal from '../../common/components/Modal';
|
|
|
|
export default class LoadingModal extends Modal {
|
|
isDismissible() {
|
|
return false;
|
|
}
|
|
|
|
className() {
|
|
return 'LoadingModal Modal--small';
|
|
}
|
|
|
|
title() {
|
|
return app.translator.trans('core.admin.loading.title');
|
|
}
|
|
|
|
content() {
|
|
return '';
|
|
}
|
|
}
|