Files
archived-redmine-theme-flat/javascripts/theme.js
Scott Mansell be60566629 Adjust padding around logo and search.
Also add a link to github, which is floated right to try and ballence
the header.
2015-09-16 21:45:39 +12:00

22 lines
578 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');
});
// add fork us on github link
var menu = $("#main-menu>ul").append("<li class='float'><a href='https://github.com/dolphin-emu/dolphin'>Github Project</a></li>");
});
})(jQuery);