Skip to content

Commit

Permalink
Fix guests management interface for IE7
Browse files Browse the repository at this point in the history
  • Loading branch information
cgx committed Sep 12, 2012
1 parent 2014e37 commit 88dfd6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/captive-portal/content/guest-management.js
Expand Up @@ -68,7 +68,7 @@ function onClickTab(event) {
});

var name = this.readAttribute("name");
var tab = $(name);
var tab = $$('#'+name).first(); // direct selector fails in IE7
if (tab) {
tab.addClassName("active");
var field = tab.down("input.first");
Expand Down

0 comments on commit 88dfd6f

Please sign in to comment.