Skip to content

Commit

Permalink
Bug fix. history.item never worked.
Browse files Browse the repository at this point in the history
  • Loading branch information
client9 committed Apr 4, 2010
1 parent 6a98b57 commit 47ebd55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window/history.js
Expand Up @@ -53,7 +53,7 @@ History = function(owner) {
}
},
item: function(index) {
if (index < history.length) {
if (index < $history.length) {
return $history[index];
} else {
return null;
Expand Down

0 comments on commit 47ebd55

Please sign in to comment.