Skip to content

v0.7.0

Compare
Choose a tag to compare
@christianacca christianacca released this 13 Jul 00:04
· 280 commits to master since this release

Breaking Changes

  • ngTable+ngTableDynamic: due to b226dec9,
  • showing/hiding columns now uses ng-if to improve performance; ng-show is no longer supported

Previously:

<tr>
  <td ng-show="showColExpr">
</tr>

Now:

<tr>
  <td ng-if="showColExpr">
</tr>