aboutsummaryrefslogtreecommitdiffstats
path: root/js/scrumelo.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/scrumelo.js')
-rw-r--r--js/scrumelo.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/scrumelo.js b/js/scrumelo.js
new file mode 100644
index 0000000..055652a
--- /dev/null
+++ b/js/scrumelo.js
@@ -0,0 +1,8 @@
+(function ($) {
+ $(document).ready(function () {
+ $(".hide").hide();
+ $(".toggle").click(function () {
+ $(document.getElementById($(this).data("show"))).toggle();
+ });
+ });
+})(jQuery);