Skip to content

Commit

Permalink
Fixing tabs not showing after re-enabling them in the options page
Browse files Browse the repository at this point in the history
  • Loading branch information
cezarsa committed Jan 13, 2010
1 parent 099d48a commit aa6f343
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion background.html
Expand Up @@ -507,7 +507,11 @@
if(orderedPos == -1) {
orderedPos = retList.length;
}
retList[orderedPos] = tId;
if(retList[orderedPos]) {
retList.splice(orderedPos, 0, tId);
} else {
retList[orderedPos] = tId;
}
}
for(var i = 0; i < retList.length; ++i) {
var tId = retList[i];
Expand Down

0 comments on commit aa6f343

Please sign in to comment.