Blame view

controllets/providers-utility-controllet/ckan.js 313 Bytes
9fd4ca8a   Renato De Donato   new data table
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  //function _path() {
  //    return "result->records"
  //}
  //
  //function _arrayPath() {
  //    return ["result", "records", "*"];
  //}
  
  function ckan_Provider (url) {
      this.url = url;
      this.path = "result->records";
  }
  
  ckan_Provider.prototype.getData = function() {
      console.log("ckan");
      return 'ckan';
  };