Blame view

controllets/providers-utility-controllet/openDataSoft.js 181 Bytes
9fd4ca8a   Renato De Donato   new data table
1
2
3
4
5
6
7
8
  function openDataSoft_Provider (url) {
      this.url = url;
      this.path = "result->records";
  }
  
  openDataSoft_Provider.prototype.getData = function() {
      return 'openDataSoft';
  };