aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/js/models/report.js1
-rw-r--r--src/js/views/around.js1
-rw-r--r--src/js/views/details_extra.js2
-rw-r--r--src/js/views/photo.js1
-rw-r--r--src/js/views/submit.js1
5 files changed, 0 insertions, 6 deletions
diff --git a/src/js/models/report.js b/src/js/models/report.js
index 008b9eb..97e426e 100644
--- a/src/js/models/report.js
+++ b/src/js/models/report.js
@@ -196,7 +196,6 @@
}
},
error: function (data, status, errorThrown ) {
- console.log(FMS.strings.report_send_error);
that.trigger('error', that, data, status, errorThrown );
}
} );
diff --git a/src/js/views/around.js b/src/js/views/around.js
index d912198..a910e26 100644
--- a/src/js/views/around.js
+++ b/src/js/views/around.js
@@ -183,7 +183,6 @@
$('#mark-here').hide();
$('#pc').attr('placeholder', FMS.strings.search_placeholder).focus();
}
- console.log(msg);
$('#front-howto').html('<p>' + msg + '</p>');
$('#front-howto').show();
diff --git a/src/js/views/details_extra.js b/src/js/views/details_extra.js
index 90237f7..160ff11 100644
--- a/src/js/views/details_extra.js
+++ b/src/js/views/details_extra.js
@@ -18,7 +18,6 @@
},
afterRender: function() {
- console.log(this.model);
this.populateFields();
},
@@ -98,7 +97,6 @@
populateFields: function() {
var that = this;
var populate = function(index) {
- console.log(that.$(this).attr('name'));
that.$(this).val(that.model.get(that.$(this).attr('name')));
};
this.$('input').each(populate);
diff --git a/src/js/views/photo.js b/src/js/views/photo.js
index 9d94b9a..6592904 100644
--- a/src/js/views/photo.js
+++ b/src/js/views/photo.js
@@ -44,7 +44,6 @@
},
addPhotoSuccess: function(imgURI) {
- console.log(imgURI);
var move;
// on iOS the photos go into a temp folder in the apps own filespace so we
// can move them, and indeed have to as the tmp space is cleaned out by the OS
diff --git a/src/js/views/submit.js b/src/js/views/submit.js
index 1e870c0..fbd81ac 100644
--- a/src/js/views/submit.js
+++ b/src/js/views/submit.js
@@ -243,7 +243,6 @@
},
initialize: function() {
- console.log('submit name initalize');
this.listenTo(this.model, 'sync', this.onReportSync );
this.listenTo( this.model, 'error', this.onReportError );
},