Merge branch '217-ckan-backend'

This commit is contained in:
Rufus Pollock 2012-08-21 22:09:16 +01:00
commit b03fa3b1a4
2 changed files with 3 additions and 1 deletions

View File

@ -37,7 +37,7 @@ this.recline.Backend.Ckan = this.recline.Backend.Ckan || {};
return dfd.promise();
};
my.query = function(dataset, queryObj) {
my.query = function(queryObj, dataset) {
var wrapper = my.DataStore(dataset.url);
var actualQuery = {
resource_id: dataset.id,

View File

@ -1,3 +1,4 @@
(function ($) {
module("Backend CKAN");
test("fetch", function() {
@ -162,3 +163,4 @@ var sample_data = {
"success": true
};
})(this.jQuery);