Guest User

Untitled

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. document.observe("dom:loaded", function() {
  2. $("table_click").observe("click", function() {
  3.  
  4. $$('.body_overlay').first().appear({ duration: 0.3 });
  5. $$('.description').first().appear({ duration: 0.3 });
  6. });
  7.  
  8. $$(".body_overlay").first().observe("click", hidePopup);
  9. $$(".description").first().observe("click", hidePopup);
  10.  
  11. DD_roundies.addRule('.description', 10, true);
  12. });
  13.  
  14. function hidePopup() {
  15. $$('.body_overlay').first().fade({ duration: 0.3 });
  16. $$('.description').first().fade({ duration: 0.3 });
  17. }
Add Comment
Please, Sign In to add comment