Skip to content

Commit

Permalink
Fix overflow CSS problem in FF
Browse files Browse the repository at this point in the history
  • Loading branch information
mde committed Aug 20, 2012
1 parent 5eddf0c commit 3acf168
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/controllers/articles.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var Articles = function () {
async: true
});

this.respondsWith = ['html', 'json', 'xml', 'js', 'txt'];
this.respondsWith = ['html', 'json', 'xml', 'rss'];

this.index = function (req, resp, params) {
var self = this;
Expand Down
2 changes: 1 addition & 1 deletion public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ div.main {
padding: 18px 8px 0 8px;
text-align: left;
max-width: 780px;
overflow: auto;
overflow: hidden;
}
div.right-nav {
width: 220px;
Expand Down

0 comments on commit 3acf168

Please sign in to comment.