remove debug

pull/1093/merge
Thibault Duplessis 2015-10-05 08:25:27 +02:00
parent 1816b0d7de
commit 25db13bcf4
3 changed files with 5 additions and 8 deletions

View File

@ -99,9 +99,8 @@ object PlayerRepo {
private def aggregationUserIdList(res: Stream[BSONDocument]): List[String] =
res.headOption flatMap { _.getAs[List[String]]("uids") } getOrElse Nil
import coll.BatchCommands.AggregationFramework,
AggregationFramework.{ Descending, Group, Match, Push, Sort }
import coll.BatchCommands.AggregationFramework, AggregationFramework.{ Descending, Group, Match, Push, Sort }
def userIds(tourId: String): Fu[List[String]] =
coll.aggregate(Match(selectTour(tourId)), List(
Group(BSONBoolean(true))("uids" -> Push("uid")))).

View File

@ -216,6 +216,9 @@ ol.scheduled_tournaments a {
#tournament table.standing tbody tr {
cursor: pointer;
transition: 0.13s;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
}
#tournament table.standing tbody tr:hover {
background: rgba(191, 231, 255, 0.7);

View File

@ -113,11 +113,6 @@ module.exports = function(env) {
this.vm.playerInfo.data = data;
}.bind(this);
setTimeout(function() {
this.showPlayerInfo('voat');
m.redraw();
}.bind(this), 500);
sound.end(this.data);
sound.countDown(this.data);
redirectToMyGame();