1
0
Fork 0

Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
Jan Steemann 2014-02-21 14:44:59 +01:00
commit 8a832fe815
3 changed files with 13 additions and 0 deletions

View File

@ -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;
}

View File

@ -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>

View File

@ -80,6 +80,10 @@
return; return;
} }
} }
if (result === true) {
$('#showSaveState').fadeIn(1000).fadeOut(1000);
}
}, },
breadcrumb: function () { breadcrumb: function () {