aboutsummaryrefslogtreecommitdiffstats
path: root/js/scrumelo.js
blob: 055652a866dcf06493d61ea99d5a376371839589 (plain)
1
2
3
4
5
6
7
8
(function ($) {
    $(document).ready(function () {
        $(".hide").hide();
        $(".toggle").click(function () {
            $(document.getElementById($(this).data("show"))).toggle();
        });
    });
})(jQuery);