forked from Third-Culture-Software/bhima
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(uiGrid): use performance feats where possible
This commit changes the majority of the ui-grids to use `flatEntityAccess` and `fastWatch` where possible. This includes all of the registries. It also adds the `ngTouch` module for better behavior on mobile. Closes Third-Culture-Software#1039.
- Loading branch information
Jonathan Niles
committed
Dec 22, 2016
1 parent
32e60a0
commit 3ff8d2c
Showing
10 changed files
with
141 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<div style="padding: 5px;"> | ||
<a href="" | ||
ng-if="row.entity.uuid" | ||
ng-click="grid.appScope.showReceipt(row.entity.uuid)" | ||
data-link-receipt="{{ row.entity.uuid }}"> | ||
<i class="fa fa-file-pdf-o"></i> {{ "TABLE.COLUMNS.RECEIPT" | translate }} | ||
<div class="ui-grid-cell-contents"> | ||
<a href | ||
ng-if="row.entity.uuid" | ||
ng-click="grid.appScope.showReceipt(row.entity.uuid)" | ||
data-link-receipt="{{ ::row.entity.uuid }}"> | ||
<i class="fa fa-file-pdf-o"></i> {{ "TABLE.COLUMNS.RECEIPT" | translate }} | ||
</a> | ||
</div> |
Oops, something went wrong.