Skip to content

Commit

Permalink
update icons again
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliot Nahman committed Jul 18, 2017
1 parent 6a215db commit d6ca694
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion aha-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -1531,7 +1531,7 @@
_getSortingIcon: function(sortable, column, sortingColumn, descending) {
var sortingIcon = ' ';
if(sortable && sortingColumn === column.name) {
sortingIcon = descending ? 'pxm:arrow-down' : 'pxm:arrow-up';
sortingIcon = descending ? 'px-nav:down' : 'px-nav:up';
}
return sortingIcon;
},
Expand Down
4 changes: 2 additions & 2 deletions px-data-table-cell.html
Original file line number Diff line number Diff line change
Expand Up @@ -327,11 +327,11 @@
_getCellIcon: function(showEditIcon, editing, valid){
if(valid) {
if(showEditIcon) {
return 'pxs:edit';
return 'px-utl:edit';
}
}
else {
return 'pxs:failure';
return 'px-utl:failure';
}
},
_getCellIconClass: function(showEditIcon, editing, valid){
Expand Down
4 changes: 2 additions & 2 deletions px-pagination.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
<span>{{numberOfItems}}</span>
</span>
<button id="previous" class$="btn {{_getPageupClass(currentPage)}}" on-click="goToPreviousPage">
<px-icon icon="pxm:arrow-left"></px-icon>
<px-icon icon="px-nav:next"></px-icon>
</button>
<template is="dom-repeat" items="{{_pagerButtons(pageCount, currentPage)}}" as="page">
<span on-click="_goToPage" class$="{{_getPagerButtonClass(page.val, currentPage)}}">{{page.val}}</span>
</template>
<button id="next" class$="btn {{_getPagedownClass(currentPage, pageCount)}}" on-click="goToNextPage">
<px-icon icon="pxm:arrow-right"></px-icon>
<px-icon icon="px-nav:back"></px-icon>
</button>
</div>

Expand Down

0 comments on commit d6ca694

Please sign in to comment.