1
0
Fork 0

removed console logs

This commit is contained in:
Heiko Kernbach 2013-02-18 19:40:42 +01:00
parent a86739e6bc
commit 19d90b8899
4 changed files with 0 additions and 5 deletions

View File

@ -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');

View File

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

View File

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

View File

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