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