Removed vetigial argument and properly aligned post_store

Этот коммит содержится в:
nickago
2015-08-10 08:31:55 -07:00
родитель f6bc38163e
Коммит 1e40abbdea

Просмотреть файл

@@ -69,8 +69,8 @@ var PostStore = assign({}, EventEmitter.prototype, {
this.removeListener(SELECTED_POST_CHANGE_EVENT, callback); this.removeListener(SELECTED_POST_CHANGE_EVENT, callback);
}, },
emitMentionDataChange: function(id, mentionText, excludeList) { emitMentionDataChange: function(id, mentionText) {
this.emit(MENTION_DATA_CHANGE_EVENT, id, mentionText, excludeList); this.emit(MENTION_DATA_CHANGE_EVENT, id, mentionText);
}, },
addMentionDataChangeListener: function(callback) { addMentionDataChangeListener: function(callback) {