mirror of https://gitee.com/bigwinds/arangodb
removed console logs
This commit is contained in:
parent
a86739e6bc
commit
19d90b8899
|
@ -35,7 +35,6 @@ $(document).ready(function() {
|
|||
window.arangoLogsStore.fetch({
|
||||
success: function () {
|
||||
if (!window.logsView) {
|
||||
console.log("not existing");
|
||||
}
|
||||
window.logsView = new window.logsView({
|
||||
collection: window.arangoLogsStore
|
||||
|
@ -127,7 +126,6 @@ $(document).ready(function() {
|
|||
window.arangoLogsStore.fetch({
|
||||
success: function () {
|
||||
if (!window.logsView) {
|
||||
console.log("not exits");
|
||||
}
|
||||
window.logsView.render();
|
||||
$('#logNav a[href="#all"]').tab('show');
|
||||
|
|
|
@ -72,7 +72,6 @@ var collectionView = Backbone.View.extend({
|
|||
else if (status === 'unloaded') {
|
||||
var newname = $('#change-collection-name').val();
|
||||
if (this.myCollection.name !== newname) {
|
||||
console.log("different name");
|
||||
window.arangoCollectionsStore.renameCollection(collid, newname );
|
||||
this.hideModal();
|
||||
}
|
||||
|
|
|
@ -18,7 +18,6 @@ var queryView = Backbone.View.extend({
|
|||
return this;
|
||||
},
|
||||
submitQuery: function() {
|
||||
console.log("submit");
|
||||
var self = this;
|
||||
var data = {query:$('#queryInput').val()};
|
||||
var formattedJSON;
|
||||
|
|
|
@ -66,7 +66,6 @@ var shellView = Backbone.View.extend({
|
|||
var client = "arangosh> " + escapeHTML(data) + "<br>";
|
||||
$(varContent).append('<b class="shellClient">' + client + '</b>');
|
||||
this.evaloutput(command);
|
||||
console.log(command);
|
||||
$(varContent).animate({scrollTop:$(varContent)[0].scrollHeight}, 1);
|
||||
$(varInput).val('');
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue