X-Git-Url: https://git.mdrn.pl/ReadingsJQM.git/blobdiff_plain/bdd9d26375a6489d7ff8eac944e29b0789f04a20..45f8b33043d9aad64b1f89906323bc477efda0f3:/js/app/AjaxList.js?ds=sidebyside diff --git a/js/app/AjaxList.js b/js/app/AjaxList.js deleted file mode 100644 index d2d0897..0000000 --- a/js/app/AjaxList.js +++ /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);