resources.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. var R = {
  2. id: {
  3. scoreboard: {
  4. container: "scoreboard"
  5. ,header: {
  6. title: "gridTitle"
  7. ,difficulty: "gridDifficulty"
  8. ,time: "gridTime"
  9. }
  10. ,players: "scoreboardPlayers"
  11. }
  12. ,grid: "grid"
  13. ,input: "input"
  14. }
  15. ,klass: {
  16. line: "crossword-line"
  17. ,cell: {
  18. item: "cell"
  19. ,black: "cell-disabled"
  20. ,definition: "cell-definition"
  21. ,letter: "cell-letter"
  22. ,definitions: {
  23. item: "definition"
  24. ,rightVertical: "definition-right-vt"
  25. ,rightHorizontal: "definition-right-hz"
  26. ,bottomVertical: "definition-bottom-vt"
  27. ,bottomHorizontal: "definition-bottom-hz"
  28. }
  29. ,found: "cell-letter-correct"
  30. ,pending: "cell-letter-pending"
  31. ,wrong: "cell-letter-wrong"
  32. ,selected: "cell-selected"
  33. ,currentInput: "cell-input"
  34. }
  35. ,scoreboard: {
  36. player: {
  37. name: "player-name"
  38. ,score: "player-score"
  39. ,isMe: "player-self"
  40. }
  41. }
  42. }
  43. };