mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-16 22:10:31 +00:00
14 lines
362 B
JavaScript
14 lines
362 B
JavaScript
// Generated by CoffeeScript 1.6.3
|
|
(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);
|