forked from hummypkg/webif
3d0152e475
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@894 2a923420-c742-0410-a762-8d5b09965624
12 lines
160 B
JavaScript
12 lines
160 B
JavaScript
$(function() {
|
|
|
|
$('button').button();
|
|
|
|
$('#dlnareset').click(function(e) {
|
|
e.preventDefault();
|
|
$('#results').empty().slideDown().load('reset.jim');
|
|
});
|
|
|
|
});
|
|
|