diff options
author | Peter Grassberger <petertheone@gmail.com> | 2015-10-02 16:55:38 (GMT) |
---|---|---|
committer | Peter Grassberger <petertheone@gmail.com> | 2015-10-02 16:55:38 (GMT) |
commit | 90020d956895a0a0e4c4e33ae713243753e16f56 (patch) | |
tree | 3d8074c471e528725fa82ee37c028d9d88088b9c /www/js | |
parent | cd48d7bbf5edbdf55906cf8e7556f17e41376c35 (diff) |
remove console.log() lines
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/jingles.js | 7 |
1 files changed, 0 insertions, 7 deletions
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 = $('<button class="btn btn-info btn-mini"><i class="icon-arrow-right icon-white"></i> Verschieben</button>'); 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 = $('<form>'); |