| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- var R = {
- id: {
- scoreboard: {
- container: "scoreboard"
- ,header: {
- title: "gridTitle"
- ,difficulty: "gridDifficulty"
- ,time: "gridTime"
- }
- ,players: "scoreboardPlayers"
- }
- ,grid: "grid"
- ,input: "input"
- }
- ,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"
- }
- ,scoreboard: {
- player: {
- name: "player-name"
- ,score: "player-score"
- ,isMe: "player-self"
- }
- }
- }
- };
|