mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
This commit is contained in:
commit
8a832fe815
|
@ -151,3 +151,11 @@ table.dataTable thead th {
|
||||||
#saveDocumentButton {
|
#saveDocumentButton {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#showSaveState {
|
||||||
|
display:none;
|
||||||
|
color: green;
|
||||||
|
float:right;
|
||||||
|
margin-top: 10px;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
<div id="tableDiv">
|
<div id="tableDiv">
|
||||||
<div id="documentEditor"></div>
|
<div id="documentEditor"></div>
|
||||||
<button id="saveDocumentButton" class="btn btn-success pull-right">Save</button>
|
<button id="saveDocumentButton" class="btn btn-success pull-right">Save</button>
|
||||||
|
<div id="showSaveState">Saved...</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -80,6 +80,10 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (result === true) {
|
||||||
|
$('#showSaveState').fadeIn(1000).fadeOut(1000);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
breadcrumb: function () {
|
breadcrumb: function () {
|
||||||
|
|
Loading…
Reference in New Issue