Skip to content

Commit

Permalink
fix(core): IE does not render correctly when binding is used in style.
Browse files Browse the repository at this point in the history
use ng-style instead
  • Loading branch information
swalters committed Aug 14, 2015
1 parent 8fc6e2e commit 9aea44a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/ui-grid/uiGridRenderContainer.html
Expand Up @@ -9,7 +9,7 @@
<div
ng-if="colContainer.needsHScrollbarPlaceholder()"
class="ui-grid-scrollbar-placeholder"
style="height:{{colContainer.grid.scrollbarHeight}}px">
ng-style="{height:colContainer.grid.scrollbarHeight + 'px'}">
</div>
<ui-grid-footer
ng-if="grid.options.showColumnFooter">
Expand Down

0 comments on commit 9aea44a

Please sign in to comment.