Sign in
apache
/
wicket
/
rel/wicket-6.22.0
/
.
/
wicket-user-guide
/
web-app
/
js
/
application.js
blob: b2adb962e2013c0b9bb2f9635dc88f12f64a43bf [
file
] [
log
] [
blame
]
if
(
typeof
jQuery
!==
'undefined'
)
{
(
function
(
$
)
{
$
(
'#spinner'
).
ajaxStart
(
function
()
{
$
(
this
).
fadeIn
();
}).
ajaxStop
(
function
()
{
$
(
this
).
fadeOut
();
});
})(
jQuery
);
}