14 lines
218 B
JavaScript
14 lines
218 B
JavaScript
/**
|
|
* URL for a dataset (standard vis).
|
|
*/
|
|
cdb.common.DatasetUrl = cdb.common.Url.extend({
|
|
|
|
edit: function() {
|
|
return this.urlToPath();
|
|
},
|
|
|
|
public: function() {
|
|
return this.urlToPath('public');
|
|
}
|
|
});
|