Sha256: 15533745f230944fdd7e1f0799efd346123e906f0f0f1616dfb2513863131112

Contents?: true

Size: 605 Bytes

Versions: 77

Compression:

Stored size: 605 Bytes

Contents

(function ($, undefined) {
	function showImage(element, overlay) {
		if (element.href) {
			var image = new Image();
			image.src = element.href;
			overlay.append(image);
		}
	}
	
	$.fn.litebox = function(callback) {
		callback = callback || showImage;
		
		this.on('click', function() {
			var overlay = $('<div class="litebox overlay"></div>');
			
			overlay.on('click', function() {
				overlay.remove();
				$('body').css('overflow', 'auto');
			});
			
			callback(this, overlay);
			
			$('body').css('overflow', 'hidden');
			$('body').append(overlay);
			
			return false;
		});
	}
}(jQuery));

Version data entries

77 entries across 75 versions & 3 rubygems

Version Path
utopia-project-0.33.1 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.33.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.32.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.31.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.30.1 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.30.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.29.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.28.1 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.28.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.27.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.26.1 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.26.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.25.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.24.1 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.24.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.23.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.22.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.21.0 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.20.3 public/_components/jquery-litebox/jquery.litebox.js
utopia-project-0.20.2 public/_components/jquery-litebox/jquery.litebox.js