visible.js 994 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /**
  2. * @name visible.js
  3. * @author Philipp Maurer
  4. * @author Tobias Reich
  5. * @copyright 2013 by Philipp Maurer, Tobias Reich
  6. *
  7. * Visible Module
  8. * This module is used to check if elements are visible or not.
  9. */
  10. visible = {
  11. albums: function() {
  12. if ($("#tools_albums").css("display")=="block") return true;
  13. else return false;
  14. },
  15. album: function() {
  16. if ($("#tools_album").css("display")=="block") return true;
  17. else return false;
  18. },
  19. photo: function() {
  20. if ($("#imageview.fadeIn").length>0) return true;
  21. else return false;
  22. },
  23. infobox: function() {
  24. if (parseInt(lychee.infobox.css("right").replace("px", ""))==-320) return false;
  25. else return true;
  26. },
  27. controls: function() {
  28. if (lychee.loadingBar.css("opacity")<1) return false;
  29. else return true;
  30. },
  31. message: function() {
  32. if ($(".message").length>0) return true;
  33. else return false;
  34. },
  35. contextMenu: function() {
  36. if ($(".contextmenu").length>0) return true;
  37. else return false;
  38. }
  39. }