Skip to content

Commit

Permalink
Fixes #1, tablet incorrectly rendering all artciles as one
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKinlan committed May 11, 2011
1 parent 788de02 commit 4d9368f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/client/scripts/tablet/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ var TabletController = function() {
}, false);

window.addEventListener("categorychanged", function(e) {
controller_.activate($('.category.active article')); // Activate 1st article.
controller_.activate($('.category.active article').first()); // Actsvate 1st article.
}, false);

};
Expand Down

0 comments on commit 4d9368f

Please sign in to comment.