Skip to content

Commit 9fe90e9

Browse files
author
Keegan Jorgensen
committed
Made the default card type powers of 2, since we’ll be mostly using this internally.
1 parent 1ddee03 commit 9fe90e9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: app/partials/room.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
<div ng-switch on="showAdmin" class="span2 pullright">
1515
<div ng-switch-when="true">
1616
<div id="dd" class="dropdown-wrapper btn">
17-
<span>Mountain Goat pack</span>
17+
<span>Powers of Two</span>
1818
<ul class="dropdown">
19+
<li class="dropdown__item"><a href="#" ng-model="cardPack" id="deckPow2" ng-click="setCardPack('pow2')">Powers of Two</a></li>
1920
<li class="dropdown__item"><a href="#" ng-model="cardPack" id="deckGoat" ng-click="setCardPack('goat')">Mountain Goat</a></li>
2021
<li class="dropdown__item"><a href="#" ng-model="cardPack" id="deckFib" ng-click="setCardPack('fib')">Fibonacci</a></li>
2122
<li class="dropdown__item"><a href="#" ng-model="cardPack" id="deckSeq" ng-click="setCardPack('seq')">Sequential</a></li>
2223
<li class="dropdown__item"><a href="#" ng-model="cardPack" id="deckPlay" ng-click="setCardPack('play')">Playing Cards</a></li>
2324
<li class="dropdown__item"><a href="#" ng-model="cardPack" id="deckShirt" ng-click="setCardPack('tshirt')">T-Shirt</a></li>
24-
<li class="dropdown__item"><a href="#" ng-model="cardPack" id="deckPow2" ng-click="setCardPack('pow2')">Powers of Two</a></li>
2525
</ul>
2626
</div>
2727
</div>

Diff for: lib/room.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var Room = function(io, roomUrl) {
77
this.createdAt = calcTime(2);
88
this.createAdmin = true;
99
this.hasAdmin = false;
10-
this.cardPack = 'goat';
10+
this.cardPack = 'pow2';
1111
this.connections = {}; // we collect the votes in here
1212
this.forcedReveal = false;
1313
};

0 commit comments

Comments
 (0)