summaryrefslogtreecommitdiff
path: root/static/website/js
diff options
context:
space:
mode:
authorJayaram Pai2014-03-15 12:07:33 +0530
committerJayaram Pai2014-03-15 12:07:33 +0530
commitec49231eb8ea0bb64788b07cdb600c59762e4422 (patch)
treeb56b4b2c5c310c42267bd28ead4f50929826a1f2 /static/website/js
parent8eb49e53e03bc17958386984f64b08f092598739 (diff)
downloadspoken-tutorial-forums-ec49231eb8ea0bb64788b07cdb600c59762e4422.tar.gz
spoken-tutorial-forums-ec49231eb8ea0bb64788b07cdb600c59762e4422.tar.bz2
spoken-tutorial-forums-ec49231eb8ea0bb64788b07cdb600c59762e4422.zip
added cfd workshop notification
Diffstat (limited to 'static/website/js')
-rw-r--r--static/website/js/nice-bar.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/static/website/js/nice-bar.js b/static/website/js/nice-bar.js
new file mode 100644
index 0000000..b27ba2b
--- /dev/null
+++ b/static/website/js/nice-bar.js
@@ -0,0 +1,6 @@
+$(document).ready(function() {
+ $(".nice-bar").slideDown();
+ $(".nice-close").click(function() {
+ $(".nice-bar").slideUp();
+ });
+});