resources.js 613 B

123456789101112131415161718192021222324
  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. ,selected: "cell-selected"
  17. ,currentInput: "cell-input"
  18. }
  19. }
  20. };