mirror of
https://github.com/dolphin-emu/redmine-theme-flat.git
synced 2026-01-31 01:15:20 +01:00
19 lines
407 B
JavaScript
19 lines
407 B
JavaScript
(function($) {
|
|
|
|
$(document).ready(function() {
|
|
var update = $('#update')
|
|
var close = $("<div>", {'class': "update-close"}).text('x');
|
|
|
|
update.prepend(close);
|
|
close.click(function() {
|
|
update.hide();
|
|
});
|
|
|
|
// toggleFieldset();
|
|
$('#update fieldset.tabular legend').click(function() {
|
|
$(this).closest('fieldset').toggleClass('show-children');
|
|
});
|
|
});
|
|
|
|
})(jQuery);
|