From 90020d956895a0a0e4c4e33ae713243753e16f56 Mon Sep 17 00:00:00 2001 From: Peter Grassberger Date: Fri, 2 Oct 2015 18:55:38 +0200 Subject: remove console.log() lines diff --git a/www/js/jingles.js b/www/js/jingles.js index e8975ae..112772d 100644 --- a/www/js/jingles.js +++ b/www/js/jingles.js @@ -52,7 +52,6 @@ var JingleGroupList = function() { }; JingleGroupList.prototype.fetch = function() { - console.log('JingleGroupList.prototype.fetchGroups'); this.groups = []; var self = this; @@ -91,7 +90,6 @@ JingleGroupList.prototype.fetch = function() { }; JingleGroupList.prototype.render = function() { - console.log('JingleGroupList.prototype.render'); $('#app-jingles .groups').html(''); $(this.groups).each(function(index, group) { group.render(); @@ -120,7 +118,6 @@ var JingleGroup = function(title, groupName, description, lowcart, highcart, nor }; JingleGroup.prototype.fetchCarts = function() { - console.log('JingleGroup.prototype.fetchCarts'); var self = this; $.when( rivendell.listCart(this.lowcart, 1, function(cartXml) { @@ -179,7 +176,6 @@ JingleGroup.prototype.createCartFromXml = function(cartXml, active) { }; JingleGroup.prototype.render = function() { - console.log('JingleGroup.prototype.render'); var self = this; this.$el = $('.jingleGroupTemplate').clone().removeClass('jingleGroupTemplate'); @@ -274,7 +270,6 @@ JingleCut.prototype.delete = function() { }; JingleCut.prototype.render = function() { - console.log('JingleCut.prototype.render'); var moveButton = $(''); var activateButton; @@ -440,8 +435,6 @@ Importer.prototype.importFileSelectError = function(dropzone, file, msg) { }; Importer.prototype.showUploadModal = function(cart) { - console.log('Importer.prototype.showUploadModal'); - var uploadModal = $('#uploadModal'); $('div.modal-header h3', uploadModal).text("Datei auswählen..."); var form = $('
'); -- cgit v0.10.2