jquery fancybox
orazionelson opened this issue · 2 comments
orazionelson commented
orazionelson commented
I found a patch on this page:
nvidoni/fancybox#2
The file to edit is assets/grocery_crud/js/jquery_plugins/jquery.fancybox-1.3.4.js
This fix worked for me at line 570:
//content.get(0).style.removeAttribute('filter');
//wrap.get(0).style.removeAttribute('filter');
$('#fancybox-content').css('filter', 0);
$('#fancybox-wrap').css('filter', 0);
goFrendiAsgard commented
Fixed. Thank you very much
faebc71