Skip to content

Commit

Permalink
fix(Expandable): Run with lower priority than ngIf
Browse files Browse the repository at this point in the history
ngIf runs at 600 priority and this was running at 1000. Changing it to 599
should allow ngIf to live with ui-grid and expandable.

Fixes #2804
  • Loading branch information
c0bra committed Mar 30, 2015
1 parent 7c5cdca commit 949013c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/expandable/js/expandable.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
function (uiGridExpandableService, $templateCache) {
return {
replace: true,
priority: 1000,
priority: 599,
require: '^uiGrid',
scope: false,
compile: function () {
Expand Down

0 comments on commit 949013c

Please sign in to comment.