mirror of https://gitee.com/bigwinds/arangodb
13 lines
312 B
JavaScript
13 lines
312 B
JavaScript
/*jslint indent: 2, nomen: true, maxlen: 100, sloppy: true, vars: true, white: true, plusplus: true */
|
|
/*global window, Backbone*/
|
|
|
|
window.StatisticsDescription = Backbone.Model.extend({
|
|
defaults: {
|
|
"figures" : "",
|
|
"groups" : ""
|
|
},
|
|
url: function() {
|
|
return "../statistics-description";
|
|
}
|
|
});
|