Skip to content

Commit

Permalink
dev: Fixed a .js error that sneakend in on the templates
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@7393 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Aug 3, 2009
1 parent 230a63b commit 90e9575
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/default/template.js
Expand Up @@ -33,7 +33,7 @@ function focusFirst(Event)
}
// put focus on the element we just counted.
if (document.forms[0].elements[i].type == "hidden" &&
document.forms[0].elements[i].style.visibility == 'visible'
document.forms[0].elements[i].style.visibility == 'visible')
{
document.forms[0].elements[i].focus();
}
Expand Down
2 changes: 1 addition & 1 deletion templates/limespired/template.js
Expand Up @@ -33,7 +33,7 @@ function focusFirst(Event)
}
// put focus on the element we just counted.
if (document.forms[0].elements[i].type == "hidden" &&
document.forms[0].elements[i].style.visibility == 'visible'
document.forms[0].elements[i].style.visibility == 'visible')
{
document.forms[0].elements[i].focus();
}
Expand Down
2 changes: 1 addition & 1 deletion templates/mint_idea/template.js
Expand Up @@ -33,7 +33,7 @@ function focusFirst(Event)
}
// put focus on the element we just counted.
if (document.forms[0].elements[i].type == "hidden" &&
document.forms[0].elements[i].style.visibility == 'visible'
document.forms[0].elements[i].style.visibility == 'visible')
{
document.forms[0].elements[i].focus();
}
Expand Down

0 comments on commit 90e9575

Please sign in to comment.