diff options
Diffstat (limited to 'src/js/views/fms.js')
-rw-r--r-- | src/js/views/fms.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/views/fms.js b/src/js/views/fms.js index 214dc2c..be4c84a 100644 --- a/src/js/views/fms.js +++ b/src/js/views/fms.js @@ -23,7 +23,7 @@ render: function(){ if ( !this.template ) { - console.log('no template to render'); + FMS.printDebug('no template to render'); return; } template = _.template( tpl.get( this.template ) ); @@ -102,7 +102,7 @@ $('.form-error').removeClass('form-error'); }, - destroy: function() { console.log('destory for ' + this.id); this._destroy(); this.remove(); }, + destroy: function() { FMS.printDebug('destory for ' + this.id); this._destroy(); this.remove(); }, _destroy: function() {} }) |