diff options
author | Jayaram Pai | 2014-03-15 12:07:33 +0530 |
---|---|---|
committer | Jayaram Pai | 2014-03-15 12:07:33 +0530 |
commit | ec49231eb8ea0bb64788b07cdb600c59762e4422 (patch) | |
tree | b56b4b2c5c310c42267bd28ead4f50929826a1f2 /static/website/js | |
parent | 8eb49e53e03bc17958386984f64b08f092598739 (diff) | |
download | spoken-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.js | 6 |
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(); + }); +}); |