12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /**
- * @name Visible Module
- * @description This module is used to check if elements are visible or not.
- * @author Tobias Reich
- * @copyright 2014 by Tobias Reich
- */
- visible = {
- albums: function() {
- if ($('#tools_albums').css('display')==='block') return true;
- else return false;
- },
- album: function() {
- if ($('#tools_album').css('display')==='block') return true;
- else return false;
- },
- photo: function() {
- if ($('#imageview.fadeIn').length>0) return true;
- else return false;
- },
- search: function() {
- if (search.code!==null&&search.code!=='') return true;
- else return false;
- },
- infobox: function() {
- if ($('#infobox.active').length>0) return true;
- else return false;
- },
- infoboxbutton: function() {
- if (visible.albums()) return false;
- if (visible.photo()) return true;
- if (visible.album()&&$('#button_info_album:visible').length>0) return true;
- else return false;
- },
- controls: function() {
- if (lychee.loadingBar.css('opacity')<1) return false;
- else return true;
- },
- message: function() {
- if ($('.message').length>0) return true;
- else return false;
- },
- signin: function() {
- if ($('.message .sign_in').length>0) return true;
- else return false;
- },
- contextMenu: function() {
- if ($('.contextmenu').length>0) return true;
- else return false;
- },
- multiselect: function() {
- if ($('#multiselect').length>0) return true;
- else return false;
- }
- };
|