summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-09-01 14:33:59 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-09-01 14:33:59 +0200
commit2c86b31be1747e99f07c7a378e8a9b626615d1de (patch)
treed08da9385a1a1a769fbf0e982fcc1dbaf4657d4e /js
parente5afa8f70311d02e27fcb1b4a1730cf2ca7e5a54 (diff)
implemented server side move feed to folder
Diffstat (limited to 'js')
-rw-r--r--js/items.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/items.js b/js/items.js
index 85b90f764..c105a8d54 100644
--- a/js/items.js
+++ b/js/items.js
@@ -90,7 +90,7 @@ var t = t || function(app, string){ return string; }; // mock translation for lo
$.post(OC.filePath('news', 'ajax', 'loadfeed.php'), data, function(jsonData) {
if(jsonData.status == 'success'){
- self._$articleList.empty()
+ self._$articleList.empty() // FIXME: does this also removed cached items?
self._itemCache.populate(jsonData.data.feedItems);
var $items = self._itemCache.getFeedHtml(type, id);