mirror of
https://github.com/flarum/framework.git
synced 2025-05-26 00:29:59 +08:00
Remove unused imports
This commit is contained in:
8
js/forum/dist/app.js
vendored
8
js/forum/dist/app.js
vendored
@ -28604,8 +28604,8 @@ System.register('flarum/initializers/boot', ['flarum/utils/ScrollListener', 'fla
|
|||||||
});;
|
});;
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
System.register('flarum/initializers/components', ['flarum/components/CommentPost', 'flarum/components/DiscussionRenamedPost', 'flarum/components/PostedActivity', 'flarum/components/JoinedActivity', 'flarum/components/DiscussionRenamedNotification'], function (_export, _context) {
|
System.register('flarum/initializers/components', ['flarum/components/CommentPost', 'flarum/components/DiscussionRenamedPost', 'flarum/components/DiscussionRenamedNotification'], function (_export, _context) {
|
||||||
var CommentPost, DiscussionRenamedPost, PostedActivity, JoinedActivity, DiscussionRenamedNotification;
|
var CommentPost, DiscussionRenamedPost, DiscussionRenamedNotification;
|
||||||
function components(app) {
|
function components(app) {
|
||||||
app.postComponents.comment = CommentPost;
|
app.postComponents.comment = CommentPost;
|
||||||
app.postComponents.discussionRenamed = DiscussionRenamedPost;
|
app.postComponents.discussionRenamed = DiscussionRenamedPost;
|
||||||
@ -28620,10 +28620,6 @@ System.register('flarum/initializers/components', ['flarum/components/CommentPos
|
|||||||
CommentPost = _flarumComponentsCommentPost.default;
|
CommentPost = _flarumComponentsCommentPost.default;
|
||||||
}, function (_flarumComponentsDiscussionRenamedPost) {
|
}, function (_flarumComponentsDiscussionRenamedPost) {
|
||||||
DiscussionRenamedPost = _flarumComponentsDiscussionRenamedPost.default;
|
DiscussionRenamedPost = _flarumComponentsDiscussionRenamedPost.default;
|
||||||
}, function (_flarumComponentsPostedActivity) {
|
|
||||||
PostedActivity = _flarumComponentsPostedActivity.default;
|
|
||||||
}, function (_flarumComponentsJoinedActivity) {
|
|
||||||
JoinedActivity = _flarumComponentsJoinedActivity.default;
|
|
||||||
}, function (_flarumComponentsDiscussionRenamedNotification) {
|
}, function (_flarumComponentsDiscussionRenamedNotification) {
|
||||||
DiscussionRenamedNotification = _flarumComponentsDiscussionRenamedNotification.default;
|
DiscussionRenamedNotification = _flarumComponentsDiscussionRenamedNotification.default;
|
||||||
}],
|
}],
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import CommentPost from 'flarum/components/CommentPost';
|
import CommentPost from 'flarum/components/CommentPost';
|
||||||
import DiscussionRenamedPost from 'flarum/components/DiscussionRenamedPost';
|
import DiscussionRenamedPost from 'flarum/components/DiscussionRenamedPost';
|
||||||
import PostedActivity from 'flarum/components/PostedActivity';
|
|
||||||
import JoinedActivity from 'flarum/components/JoinedActivity';
|
|
||||||
import DiscussionRenamedNotification from 'flarum/components/DiscussionRenamedNotification';
|
import DiscussionRenamedNotification from 'flarum/components/DiscussionRenamedNotification';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user