| 12345678910111213141516171819202122232425262728293031 |
- var R = {
- id: {
- scoreboard: "scoreboard"
- ,grid: "grid"
- }
- ,klass: {
- line: "crossword-line"
- ,cell: {
- item: "cell"
- ,black: "cell-disabled"
- ,definition: "cell-definition"
- ,letter: "cell-letter"
- ,definitions: {
- item: "definition"
- ,rightVertical: "definition-right-vt"
- ,rightHorizontal: "definition-right-hz"
- ,bottomVertical: "definition-bottom-vt"
- ,bottomHorizontal: "definition-bottom-hz"
- }
- ,found: "cell-letter-correct"
- ,pending: "cell-letter-pending"
- ,wrong: "cell-letter-wrong"
- ,selected: "cell-selected"
- ,currentInput: "cell-input"
- }
- }
- };
|