url:{value:window.location.href,tooltip:'The error location. This information can help to narrow down the error source.'},
login:{value:user.getLogin(),tooltip:'Your account name. This information is useful in case the issue is specific to a certain account.'},
email:{value:user.getEmail(),tooltip:'Your contact email. If provided we might contact you for additional information.'},
browser:{value:navigator.userAgent,tooltip:'Your browser user agent. Many issues are specific to certain browsers. This information is important to identify those.'},
timestamp:{value:+newDate(),tooltip:'The error time. This information is useful to link the issue to a specific event on the server.'}// TODO: Submission time rather than server time for now
url:{
value:window.location.href,
tooltip:'The error location. This information can help to narrow down the error source.'
},
login:{
value:user.getLogin(),
tooltip:'Your account name. This information is useful in case the issue is specific to a certain account.'
},
email:{
value:user.getEmail(),
tooltip:'Your contact email. If provided we might contact you for additional information.'
},
browser:{
value:navigator.userAgent,
tooltip:'Your browser user agent. Many issues are specific to certain browsers. This information is important to identify those.'
},
timestamp:{
value:+newDate(),
tooltip:'The error time. This information is useful to link the issue to a specific event on the server.'
}// TODO: Submission time rather than server time for now
};
});
};
...
...
@@ -307,7 +322,7 @@ GuiConnector.prototype.alert = function (error, redirectIfSecurityError) {