resources.js 739 B

123456789101112131415161718192021222324252627
  1. var R = {
  2. klass: {
  3. line: "crossword-line"
  4. ,cell: {
  5. item: "cell"
  6. ,black: "cell-disabled"
  7. ,definition: "cell-definition"
  8. ,letter: "cell-letter"
  9. ,definitions: {
  10. item: "definition"
  11. ,rightVertical: "definition-right-vt"
  12. ,rightHorizontal: "definition-right-hz"
  13. ,bottomVertical: "definition-bottom-vt"
  14. ,bottomHorizontal: "definition-bottom-hz"
  15. }
  16. ,found: "cell-letter-correct"
  17. ,pending: "cell-letter-pending"
  18. ,wrong: "cell-letter-wrong"
  19. ,selected: "cell-selected"
  20. ,currentInput: "cell-input"
  21. }
  22. }
  23. };