summaryrefslogtreecommitdiffstats
path: root/js/items.js
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-08-30 20:50:44 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-09-01 00:31:38 +0200
commiteef8993cce0f989c32a12733ceaabfa96baa9127 (patch)
tree57fb2344f0c07c1ad368a4a8fe5d6c966bf9891b /js/items.js
parentbe192931ce450ea6c5310bf858517ef391a2a2b3 (diff)
added missing methods and javadoc
Diffstat (limited to 'js/items.js')
-rw-r--r--js/items.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/js/items.js b/js/items.js
new file mode 100644
index 000000000..8bcfd9279
--- /dev/null
+++ b/js/items.js
@@ -0,0 +1,26 @@
+/**
+* ownCloud - News app
+*
+* @author Bernhard Posselt
+* Copyright (c) 2012 - Bernhard Posselt <nukeawhale@gmail.com>
+*
+* This file is licensed under the Affero General Public License version 3 or later.
+* See the COPYING-README file
+*
+*/
+
+/**
+ * This file includes the cache and access for feed items
+ */
+
+var News = News || {};
+var t = t || function(app, string){ return string; }; // mock translation for local testing
+
+(function(){
+
+ var Items = function(){
+
+ }
+
+ News.Items = Items;
+})(); \ No newline at end of file