summaryrefslogtreecommitdiff
path: root/debug.js
blob: 7496b74ad2752de194681511d490c9fc8600704b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const DEBUG = false ;


function DbgDecorateCard(a_card)
{
  var dbg_span                   = document.createElement('span') ;
  dbg_span.style.backgroundColor = '#000' ;
  dbg_span.style.color           = '#FFF' ;
  dbg_span.style.fontSize        = 'x-large' ;
  dbg_span.textContent           = a_card.suit + a_card.rank ;

  a_card.el[0].appendChild(dbg_span) ;
}