commented out debug

pull/342/head
Matthew Hodgson 2015-11-08 13:42:45 +00:00
parent f0dbb422f6
commit 827c0da33c
2 changed files with 4 additions and 1 deletions

View File

@ -183,6 +183,8 @@ module.exports = {
}
});
//console.log("calculated new roomLists; m.recent = " + s.lists["m.recent"]);
// we actually apply the sorting to this when receiving the prop in RoomSubLists.
return s;

View File

@ -78,6 +78,7 @@ var RoomSubList = React.createClass({
componentWillReceiveProps: function(newProps) {
// order the room list appropriately before we re-render
//if (debug) console.log("received new props, list = " + newProps.list);
this.sortList(newProps.list, newProps.order);
},
@ -116,7 +117,7 @@ var RoomSubList = React.createClass({
if (order === "manual") comparator = this.manualComparator;
if (order === "recent") comparator = this.recentsComparator;
// console.log("sorting list for room " + this.props.label + " with length " + list.length + ", this.props.list = " + this.props.list);
//if (debug) console.log("sorting list for sublist " + this.props.label + " with length " + list.length + ", this.props.list = " + this.props.list);
this.setState({ sortedList: list.sort(comparator) });
},