FIX: select posts

This commit is contained in:
Régis Hanol
2015-05-12 12:54:28 +02:00
parent ab80240900
commit ff227eabe6
9 changed files with 31 additions and 39 deletions

View File

@ -1,9 +1,10 @@
import Presence from 'discourse/mixins/presence';
import SelectedPostsCount from 'discourse/mixins/selected-posts-count';
import ModalFunctionality from 'discourse/mixins/modal-functionality';
import ObjectController from 'discourse/controllers/object';
// Modal related to changing the ownership of posts
export default ObjectController.extend(Presence, Discourse.SelectedPostsCount, ModalFunctionality, {
export default ObjectController.extend(Presence, SelectedPostsCount, ModalFunctionality, {
needs: ['topic'],
topicController: Em.computed.alias('controllers.topic'),