diff --git a/html/admin/css/foxxView.css b/html/admin/css/foxxView.css
index 0fe7bc510b..ecd3e1a809 100644
--- a/html/admin/css/foxxView.css
+++ b/html/admin/css/foxxView.css
@@ -1,6 +1,11 @@
.foxxList {
padding-top: 30px;
}
+
+.foxxElement {
+ cursor: pointer;
+}
+
.foxxDescription {
width:170px;
float: left;
@@ -17,4 +22,4 @@
.badge-foxx {
bottom: 0px;
-}
\ No newline at end of file
+}
diff --git a/html/admin/js/lib/swagger-ui.js b/html/admin/js/lib/swagger-ui.js
index 9fd3ab4dfb..99686d6b77 100644
--- a/html/admin/js/lib/swagger-ui.js
+++ b/html/admin/js/lib/swagger-ui.js
@@ -637,7 +637,7 @@ function program11(depth0,data) {
function program13(depth0,data) {
- return "\n
\n ";
+ return "\n \n ";
}
buffer += "\n \n - '
- +'
'
- +'Total: | '
- +''+this.collectionStats.totalCollections+' | '
- +'
'
- +''
- +'Loaded: | '
- +''+this.collectionStats.loadedCollections+' | '
- +'
'
- +''
- +'Unloaded: | '
- +''+this.collectionStats.unloadedCollections+' | '
- +'
'
- +''
- +'System: | '
- +''+this.collectionStats.systemCollections+' | '
- +'
'
- +''
- );
-
- },
- updateCollectionsStats: function () {
- var self = this;
- this.collectionStats.loadedCollections = 0;
- this.collectionStats.unloadedCollections = 0;
- this.collectionStats.deletedCollections = 0;
- this.collectionStats.newbornCollections = 0;
- this.collectionStats.totalCollections = this.collection.length;
-
- this.collection.each(function (arango_collection) {
- if (arango_collection.get('status') === 'new born collection') {
- self.collectionStats.newbornCollections++;
- }
- else if (arango_collection.get('status') === 'loaded') {
- self.collectionStats.loadedCollections++;
- }
- else if (arango_collection.get('status') === 'unloaded') {
- self.collectionStats.unloadedCollections++;
- }
- else if (arango_collection.get('status') === 'deleted') {
- self.collectionStats.deletedCollections++;
- }
- if (arango_collection.get('name').substr(0,1) === "_") {
- self.collectionStats.systemCollections++;
- }
- });
- },
- formatCollectionsStats: function () {
- return [{
- key: "Collection Status",
- values: [
- {
- "label" : "total",
- "value" : this.collectionStats.totalCollections
- },
- {
- "label" : "loaded",
- "value" : this.collectionStats.loadedCollections
- },
- {
- "label" : "unloaded",
- "value" : this.collectionStats.unloadedCollections
- },
- {
- "label" : "system",
- "value" : this.collectionStats.systemCollections
- },
- {
- "label" : "new born",
- "value" : this.collectionStats.newbornCollections
- },
- {
- "label" : "deleted",
- "value" : this.collectionStats.deletedCollections
- }
- ]
- }]
- },
-
- updateSystem: function () {
-
- },
-
- updateClient: function () {
-
- }
-
-});