ported to Web SQL
[ReadingsJQM.git] / js / app / AjaxList.js
diff --git a/js/app/AjaxList.js b/js/app/AjaxList.js
deleted file mode 100644 (file)
index d2d0897..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-(function() {
-
-  Readings.TagList = (function() {
-
-    TagList.prototype.defaults = null;
-
-    function TagList(list, category, options) {
-      this.category = category;
-      this.options = $.extend(this.defaults, options);
-    }
-
-    TagList.prototype.load = function() {
-      return $.ajax({
-        url: Readings.config.get('wlurl') + ("/api/" + this.category),
-        success: function() {
-          return true;
-        }
-      });
-    };
-
-    return TagList;
-
-  })();
-
-}).call(this);