webapi-eca/webpages/handlers/js/error.js

15 lines
362 B
JavaScript
Raw Normal View History

2014-04-02 21:08:05 +00:00
// Generated by CoffeeScript 1.7.1
(function() {
var fOnLoad;
fOnLoad = function() {
document.title = 'Error!';
$('#pagetitle').text('Hi {{{user.username}}}, there has been an error!');
$('#info').text('Error: {{{message}}}');
return $('#info').attr('class', 'error');
};
window.addEventListener('load', fOnLoad, true);
}).call(this);