Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Typo correction on issue 29 (not a problem, but cleaner code) in mode…
…l.js @@ -134,7 +134,7 @@ define(['api','backbone','utils'], op: "getFeeds", cat_id: catId, include_nested: false, - unread_only: settings.attributes.hideEmptyCategories=="true" // get only feeds with unread articles + unread_only: settings.attributes.hideEmptyCategories // get only feeds with unread articles }; Bug correction in model.js : displaying the content of a feed did not work on HP Touchpad WebOS default browser. Now it works but article displaying do not work yet. @@ -301,7 +301,7 @@ define(['api','backbone','utils'], if (collection.feedId != feedId){ /* this is another feed, force a clean to trigger delete/add events */ - collection.set({}); + collection.set([]); // works on HP touchpad but collection.set({}) stopped the execution of code right here } // efficiently set the collection
- Loading branch information