From 3d8300a70b25ed38598cd3f2faafa15091c8f0ef Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 23 Feb 2011 12:44:32 -0500 Subject: [PATCH] Use the var keyword and correctly end the statement --- js/sql.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/sql.js b/js/sql.js index 96ebf2cb0..993b620f4 100644 --- a/js/sql.js +++ b/js/sql.js @@ -94,7 +94,7 @@ function appendInlineAnchor() { else { $('.edit_row_anchor').each(function() { - $this_td = $(this) + var $this_td = $(this); $this_td.removeClass('edit_row_anchor'); var $cloned_anchor = $this_td.clone();