forked from hummypkg/webif
0f1bbed6b9
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1789 2a923420-c742-0410-a762-8d5b09965624
13 lines
257 B
Plaintext
13 lines
257 B
Plaintext
jqplugin ui.totop
|
|
jqplugin easing
|
|
puts {
|
|
<script type=text/javascript>
|
|
$(document).ready(function() {
|
|
$().UItoTop({easingType: 'easeOutQuart'});
|
|
$('.backtotop').click(function() {
|
|
$('html, body').animate({scrollTop: 0}, 500);
|
|
});
|
|
});
|
|
</script>
|
|
}
|