scrumelo/js/scrumelo.js
Tom Willemse a5eb8e2da5 Hide new story form
Use jQuery to allow it to be toggled between visible and invisible.
2013-05-21 21:19:29 +02:00

8 lines
223 B
JavaScript

(function ($) {
$(document).ready(function () {
$(".hide").hide();
$(".toggle").click(function () {
$(document.getElementById($(this).data("show"))).toggle();
});
});
})(jQuery);