mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-25 18:30:24 +00:00
8 lines
248 B
CoffeeScript
8 lines
248 B
CoffeeScript
|
|
fOnLoad = () ->
|
|
document.title = 'Error!'
|
|
$( '#pagetitle' ).text 'Hi {{{user.username}}}, there has been an error!'
|
|
$( '#info' ).text 'Error: {{{message}}}'
|
|
$( '#info' ).attr 'class', 'error'
|
|
|
|
window.addEventListener 'load', fOnLoad, true
|