
!function(){var root=this;var defaults={el:'#nameplateDetails'};var NameplateDetailsView=function(options){this.options=$.extend({},defaults,options);this.template=this.options.template||Handlebars.compile($('#nameplateDetailsTemplate').html());this.mediator=this.options.mediator;this.$el=$(this.options.el);this.mediator.subscribe('vehicleDataRequested',this.render,this);};NameplateDetailsView.prototype={render:function(data){this.$el.html(this.template(data));this.$el.fadeIn();},hide:function(){this.$el.fadeOut();},show:function(){this.$el.fadeIn();}};root.NameplateDetailsView=function(options){return new NameplateDetailsView(options);};}.call(EP2);
