mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 23:36:00 +00:00
15 lines
280 B
JavaScript
Executable File
15 lines
280 B
JavaScript
Executable File
|
|
$(document).ready
|
|
(
|
|
function()
|
|
{
|
|
$(".msg, .msg-ok, .msg-err").on
|
|
(
|
|
"click",
|
|
function()
|
|
{
|
|
$(this).fadeOut('fast');
|
|
}
|
|
);
|
|
}
|
|
); |