Skip to content

Commit

Permalink
Fixing nasty bug after using options page, causing tweets to stay for…
Browse files Browse the repository at this point in the history
…ever into the timeline.
  • Loading branch information
cezarsa committed Dec 3, 2009
1 parent ac90cbb commit c340105
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion background.html
Expand Up @@ -30,7 +30,11 @@
return map;
},
get: function(option) {
return this.load()[option];
var optionValue = this.load()[option];
var intValue = parseInt(optionValue)
if(intValue == optionValue)
return intValue;
return optionValue;
}
};

Expand Down

0 comments on commit c340105

Please sign in to comment.