UNPKG
nodegame-openshift
Version:
latest (0.0.4)
0.0.4
Prepares a nodeGame instance to run on the openshift cloud.
nodegame.org
nodeGame/nodegame-openshift
nodegame-openshift
/
games
/
ultimatum
/
views
/
contexts
/
en
/
bidder.js
11 lines
(9 loc)
•
283 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
module
.
exports
=
function
(
settings, headers
) {
var
coins = settings.
pp
.
COINS
;
return
{
"title"
:
"Bidder"
,
"youAre"
:
"You are the Bidder"
,
"makeAnOffer"
:
"Make an offer from 0 to "
+ coins +
" to another player."
,
"submit"
:
"Submit"
}; };