Untitled


SUBMITTED BY: mepani1523

DATE: March 1, 2016, 8:13 a.m.

FORMAT: Text only

SIZE: 445 Bytes

HITS: 6469

  1. function startGame(){
  2. console.log('Game started!');
  3. reset();
  4. $loButton.trigger('click');
  5. }
  6. function stopGame(){
  7. console.log('Game will stop soon! Let me finish.');
  8. stopped = true;
  9. }
  10. function reset(){
  11. $('#double_your_btc_stake').val(startValue);
  12. }
  13. // quick and dirty hack if you have very little bitcoins like 0.0000001
  14. function deexponentize(number){
  15. return number * 1000000;

comments powered by Disqus