aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/router.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/router.js')
-rw-r--r--src/js/router.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/router.js b/src/js/router.js
index c42a742..c691abb 100644
--- a/src/js/router.js
+++ b/src/js/router.js
@@ -147,7 +147,7 @@
},
changeView: function(view) {
- console.log( 'change View to ' + view.id );
+ FMS.printDebug( 'change View to ' + view.id );
$(view.el).attr('data-role', 'page');
if ( view.prev ) {
$(view.el).attr('data-add-back-btn', 'true');
@@ -170,7 +170,7 @@
$.mobile.changePage($(view.el), options);
if ( view.id != 'front-page' ) {
- console.log('changed View to ' + view.id);
+ FMS.printDebug('changed View to ' + view.id);
this.currentView = view;
}
}