function HelpPinsafeView(options){var self=this; self.inet=options.inet; self.i18n=options.i18n; self.messageHandler=options.messageHandler; self.scrollbar=null; self._init(); }HelpPinsafeView.prototype._init=function(){var self=this; var url=configuration.rootPath+"/helpPinsafe.html"; var template=inet.renderTemplate(url,{i18n:self.i18n,urlImg:configuration.rootPath+"/images/ayuda_turing.jpg"}); if(template){$("#helpPinsafeView .modal-content").html(template); }}; HelpPinsafeView.prototype.show=function(){var self=this; $("#helpPinsafeView").modal({backdrop:"static"}); $("#helpPinsafeView .modal-dialog").width("1080px"); $("#helpPinsafeView .modal-dialog").height("auto"); inet.centerModal(); };