From a9fae52dfb24fc416e878dc51c298351ad353165 Mon Sep 17 00:00:00 2001 From: Freddie Lamble Date: Sat, 22 Nov 2014 10:00:51 +0000 Subject: [PATCH] Correct clues numbered list This fixes the numbered list for the clues by adding a value tag so that the numbers of the clues match the position in the crossword --- js/jquery.crossword.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/jquery.crossword.js b/js/jquery.crossword.js index 343a06e..b807b4f 100644 --- a/js/jquery.crossword.js +++ b/js/jquery.crossword.js @@ -191,7 +191,8 @@ } // while we're in here, add clues to DOM! - $('#' + puzz.data[i].orientation).append('
  • ' + puzz.data[i].clue + '
  • '); + $('#' + puzz.data[i].orientation).append('
  • ' + puzz.data[i].clue + '
  • '); } // Calculate rows/cols by finding max coords of each entry, then picking the highest