mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
905da3febf
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@98756 467b73ca-7a2a-4603-9d3b-597d59a354a9
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
(function($) {
|
|
$(document).ready(function() {
|
|
$('.import-form .advanced').hide();
|
|
|
|
$('.import-form a.toggle-advanced').livequery(
|
|
'click',
|
|
function(e) {
|
|
$(this).parents('form:eq(0)').find('.advanced').toggle();
|
|
return false;
|
|
}
|
|
);
|
|
});
|
|
}(jQuery)); |