Ticket #1527: ifxhighlight_bug_fix_23_08_2007.patch
| File ifxhighlight_bug_fix_23_08_2007.patch, 570 bytes (added by berpasan, 6 years ago) |
|---|
-
ifxhighlight.js
33 33 callback = typeof callback == 'function' ? callback : null; 34 34 var oldColor = jQuery(this).css('backgroundColor'); 35 35 var parentEl = this.parentNode; 36 while(oldColor == 'transparent' && parentEl ) {36 while(oldColor == 'transparent' && parentEl && parentEl.nodeType !== 1) { 37 37 oldColor = jQuery(parentEl).css('backgroundColor'); 38 38 parentEl = parentEl.parentNode; 39 39 }
