Skip to content

Commit

Permalink
Honor background-clip for the background color in IE9. Fixed issue lo…
Browse files Browse the repository at this point in the history
  • Loading branch information
lojjic committed May 20, 2012
1 parent cae6bc8 commit 5e2c432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/IE9BackgroundRenderer.js
Expand Up @@ -49,7 +49,7 @@ PIE.IE9BackgroundRenderer = PIE.RendererBase.newRenderer( {
}

if ( props.color ) {
bg.push( props.color.val );
bg.push( props.color.val + ' ' + ( props.colorClip || '' ) );
}

me.parent.setBackgroundLayer(me.bgLayerZIndex, bg.join(','));
Expand Down

0 comments on commit 5e2c432

Please sign in to comment.