Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions jquery.fancybox/jquery.fancybox-1.2.1.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* Requires: jQuery v1.3+
*/
;(function($) {

$.fn.fixPNG = function() {
return this.each(function () {
var image = $(this).css('backgroundImage');
Expand Down Expand Up @@ -479,7 +478,10 @@
return false;
};

$.fn.fancybox.build = function() {
$.fn.fancybox.build = function(custom_html) {
if(customer_html)
return custom_html;

var html = '';

html += '<div id="fancy_overlay"></div>';
Expand Down Expand Up @@ -544,4 +546,4 @@
$.fn.fancybox.build();
});

})(jQuery);
})(jQuery);