mirror of https://gitee.com/bigwinds/arangodb
grunt build
This commit is contained in:
parent
8b4f0ed6e8
commit
0f3997d162
|
@ -17862,20 +17862,11 @@ window.arangoDocument = Backbone.Collection.extend({
|
|||
url: '/_api/document/',
|
||||
model: arangoDocumentModel,
|
||||
collectionInfo: {},
|
||||
|
||||
deleteEdge: function (colid, docid, callback) {
|
||||
$.ajax({
|
||||
cache: false,
|
||||
type: 'DELETE',
|
||||
contentType: "application/json",
|
||||
url: "/_api/edge/" + encodeURIComponent(colid) + "/" + encodeURIComponent(docid),
|
||||
success: function () {
|
||||
callback(false);
|
||||
},
|
||||
error: function () {
|
||||
callback(true);
|
||||
}
|
||||
});
|
||||
this.deleteDocument(colid, docid, callback);
|
||||
},
|
||||
|
||||
deleteDocument: function (colid, docid, callback) {
|
||||
$.ajax({
|
||||
cache: false,
|
||||
|
@ -17899,17 +17890,22 @@ window.arangoDocument = Backbone.Collection.extend({
|
|||
|
||||
if (key) {
|
||||
newEdge = JSON.stringify({
|
||||
_key: key
|
||||
_key: key,
|
||||
_from: from,
|
||||
_to: to
|
||||
});
|
||||
}
|
||||
else {
|
||||
newEdge = JSON.stringify({});
|
||||
newEdge = JSON.stringify({
|
||||
_from: from,
|
||||
_to: to
|
||||
});
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
cache: false,
|
||||
type: "POST",
|
||||
url: "/_api/edge?collection=" + collectionID + "&from=" + from + "&to=" + to,
|
||||
url: "/_api/document?collection=" + encodeURIComponent(collectionID),
|
||||
data: newEdge,
|
||||
contentType: "application/json",
|
||||
processData: false,
|
||||
|
@ -17967,22 +17963,7 @@ window.arangoDocument = Backbone.Collection.extend({
|
|||
});
|
||||
},
|
||||
getEdge: function (colid, docid, callback){
|
||||
var self = this;
|
||||
this.clearDocument();
|
||||
$.ajax({
|
||||
cache: false,
|
||||
type: "GET",
|
||||
url: "/_api/edge/" + encodeURIComponent(colid) +"/"+ encodeURIComponent(docid),
|
||||
contentType: "application/json",
|
||||
processData: false,
|
||||
success: function(data) {
|
||||
self.add(data);
|
||||
callback(false, data, 'edge');
|
||||
},
|
||||
error: function(data) {
|
||||
callback(true, data);
|
||||
}
|
||||
});
|
||||
this.getDocument(colid, docid, callback);
|
||||
},
|
||||
getDocument: function (colid, docid, callback) {
|
||||
var self = this;
|
||||
|
@ -24186,7 +24167,7 @@ window.ArangoUsers = Backbone.Collection.extend({
|
|||
}
|
||||
else {
|
||||
window.modalView.hide();
|
||||
data = data.split('/');
|
||||
data = data._id.split('/');
|
||||
|
||||
try {
|
||||
url = "collection/" + data[0] + '/' + data[1];
|
||||
|
@ -34055,8 +34036,9 @@ window.ArangoUsers = Backbone.Collection.extend({
|
|||
"test": "test"
|
||||
},
|
||||
|
||||
execute: function(callback, args, name) {
|
||||
execute: function(callback, args) {
|
||||
$('#subNavigationBar .breadcrumb').html('');
|
||||
$('#subNavigationBar .bottom').html('');
|
||||
if (callback) {
|
||||
callback.apply(this, args);
|
||||
}
|
||||
|
|
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -1,3 +1,3 @@
|
|||
<script src="sharedLibs.js?version=1460666989965"></script>
|
||||
<script src="libs.js?version=1460666989965"></script>
|
||||
<script src="app.js?version=1460666989965"></script>
|
||||
<script src="sharedLibs.js?version=1460670094870"></script>
|
||||
<script src="libs.js?version=1460670094870"></script>
|
||||
<script src="app.js?version=1460670094870"></script>
|
||||
|
|
|
@ -2883,4 +2883,4 @@ var cutByResolution = function (str) {
|
|||
</div>
|
||||
|
||||
<div id="workMonitorContent" class="innerContent">
|
||||
</div></script></head><body><nav class="navbar"><div class="primary"><div class="navlogo"><a class="logo" href="#"><img class="arangodbLogo" src="img/DEVLOGO.png"></a></div><div class="statmenu" id="statisticBar"></div><div class="navmenu" id="navigationBar"></div></div></nav><div class="bodyWrapper"><div class="centralRow"><div id="navbar2" class="secondary"><div class="subnavmenu" id="subNavigationBar"></div></div><div class="resizecontainer contentWrapper" style="clear:both"><div id="content" class="centralContent"></div></div><div class="resizecontainer footerWrapper" style="clear:both"><footer class="footer"><div class="" id="footerBar"></div></footer></div></div></div><div id="modalPlaceholder"></div><div id="progressPlaceholder" style="display:none"></div><div id="spotlightPlaceholder" style="display:none"></div><div class="arangoFrame" style=""><div class="outerDiv"><div class="innerDiv"></div></div></div><script src="sharedLibs.js?version=1460666989965"></script><script src="libs.js?version=1460666989965"></script><script src="app.js?version=1460666989965"></script></body></html>
|
||||
</div></script></head><body><nav class="navbar"><div class="primary"><div class="navlogo"><a class="logo" href="#"><img class="arangodbLogo" src="img/DEVLOGO.png"></a></div><div class="statmenu" id="statisticBar"></div><div class="navmenu" id="navigationBar"></div></div></nav><div class="bodyWrapper"><div class="centralRow"><div id="navbar2" class="secondary"><div class="subnavmenu" id="subNavigationBar"></div></div><div class="resizecontainer contentWrapper" style="clear:both"><div id="content" class="centralContent"></div></div><div class="resizecontainer footerWrapper" style="clear:both"><footer class="footer"><div class="" id="footerBar"></div></footer></div></div></div><div id="modalPlaceholder"></div><div id="progressPlaceholder" style="display:none"></div><div id="spotlightPlaceholder" style="display:none"></div><div class="arangoFrame" style=""><div class="outerDiv"><div class="innerDiv"></div></div></div><script src="sharedLibs.js?version=1460670094870"></script><script src="libs.js?version=1460670094870"></script><script src="app.js?version=1460670094870"></script></body></html>
|
Binary file not shown.
|
@ -3200,9 +3200,9 @@ var cutByResolution = function (str) {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<script src="sharedLibs.js?version=1460666989965"></script>
|
||||
<script src="libs.js?version=1460666989965"></script>
|
||||
<script src="app.js?version=1460666989965"></script>
|
||||
<script src="sharedLibs.js?version=1460670094870"></script>
|
||||
<script src="libs.js?version=1460670094870"></script>
|
||||
<script src="app.js?version=1460670094870"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -5212,8 +5212,7 @@ div.centralRow {
|
|||
|
||||
div.centralContent {
|
||||
background-color: transparent;
|
||||
margin-left: -5px;
|
||||
margin-right: -5px;
|
||||
box-sizing: border-box;
|
||||
margin-top: 10px;
|
||||
min-height: 80px;
|
||||
padding: 5px;
|
||||
|
@ -5221,7 +5220,7 @@ div.centralContent {
|
|||
|
||||
.contentDiv {
|
||||
list-style: none;
|
||||
padding: 15px 0 0; }
|
||||
padding: 0; }
|
||||
.contentDiv li {
|
||||
background-color: rgba(0, 0, 0, 0.05); }
|
||||
.contentDiv a.add {
|
||||
|
@ -7124,6 +7123,9 @@ toolbar {
|
|||
#queryManagementContent .arango-table {
|
||||
border: 0; }
|
||||
|
||||
#clearQuery {
|
||||
display: none; }
|
||||
|
||||
.display-none {
|
||||
display: none; }
|
||||
|
||||
|
@ -7860,6 +7862,8 @@ input.gv-radio-button {
|
|||
margin-left: 5px; }
|
||||
|
||||
@media (max-width: 568px) {
|
||||
.document-info-div .search {
|
||||
display: none; }
|
||||
.dashboard-large-chart,
|
||||
.dashboard-medium-chart-outer:first-child {
|
||||
padding-right: 0 !important; }
|
||||
|
@ -7885,6 +7889,8 @@ input.gv-radio-button {
|
|||
.arango-collection-ul .tab .fa {
|
||||
padding-left: 6px;
|
||||
padding-right: 20px; }
|
||||
.headerButtonBar {
|
||||
display: none; }
|
||||
div.centralRow {
|
||||
left: 40px; } }
|
||||
|
||||
|
@ -7892,6 +7898,10 @@ input.gv-radio-button {
|
|||
.dashboard-large-chart,
|
||||
.dashboard-medium-chart-outer:first-child {
|
||||
padding-right: 0 !important; }
|
||||
.document-info-div .search {
|
||||
display: none; }
|
||||
.headerButtonBar {
|
||||
display: none; }
|
||||
.dashboard-bar-chart-container {
|
||||
margin-bottom: 65px !important;
|
||||
padding-left: 0 !important;
|
||||
|
@ -7907,9 +7917,6 @@ input.gv-radio-button {
|
|||
.arango-collection-select {
|
||||
display: inline-block; } }
|
||||
|
||||
#documentsDiv {
|
||||
padding-top: 1px; }
|
||||
|
||||
.document-info-div {
|
||||
margin-top: 20px;
|
||||
min-height: 0; }
|
||||
|
@ -8631,9 +8638,6 @@ table.arangoDataTable tr.odd {
|
|||
table .sorting {
|
||||
background: none !important; }
|
||||
|
||||
#documentsDiv {
|
||||
margin-top: 20px; }
|
||||
|
||||
.new-index-view input[type='checkbox'] {
|
||||
float: left; }
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue