Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Commit

Permalink
fix(allManagers): fixing top-row buttons click zones (firefox bug)
Browse files Browse the repository at this point in the history
closes #55
  • Loading branch information
seiyria committed Oct 13, 2015
1 parent 2210c1b commit 7a77ba2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions src/jade/partials/managers/event-manage.jade
Expand Up @@ -25,14 +25,14 @@ script(type="text/ng-template", id="/event-manage")
md-data-table-toolbar(ng-show="selected.length")
div {{selected.length}} {{selected.length > 1 ? 'events' : 'event'}} selected
div(flex)
md-button.md-icon-button(ng-if="selected.length == 1", aria-label="edit event")
ng-md-icon(icon="edit", ng-click="editItem($event)")
md-button.md-icon-button(ng-if="selected.length == 1", ng-click="editItem($event)", aria-label="edit event")
ng-md-icon(icon="edit")
md-tooltip Edit tournament
md-button.md-icon-button(ng-click, aria-label="archive events")
ng-md-icon(icon="archive", ng-click="archiveItem($event)")
md-button.md-icon-button(ng-click="archiveItem($event)", aria-label="archive events")
ng-md-icon(icon="archive")
md-tooltip Archive event
md-button.md-icon-button(ng-click, aria-label="remove events")
ng-md-icon(icon="delete", ng-click="removeItem($event)")
md-button.md-icon-button(ng-click="removeItem($event)", aria-label="remove events")
ng-md-icon(icon="delete")
md-tooltip Remove event

md-data-table-container
Expand Down
12 changes: 6 additions & 6 deletions src/jade/partials/managers/tournament-manage.jade
Expand Up @@ -25,14 +25,14 @@ script(type="text/ng-template", id="/tournament-manage")
md-data-table-toolbar(ng-show="selected.length")
div {{selected.length}} {{selected.length > 1 ? 'tournaments' : 'tournament'}} selected
div(flex)
md-button.md-icon-button(ng-if="selected.length == 1", aria-label="edit tournament")
ng-md-icon(icon="edit", ng-click="editItem($event)")
md-button.md-icon-button(ng-if="selected.length == 1", ng-click="editItem($event)", aria-label="edit tournament")
ng-md-icon(icon="edit")
md-tooltip Edit tournament
md-button.md-icon-button(ng-click, aria-label="archive tournaments")
ng-md-icon(icon="archive", ng-click="archiveItem($event)")
md-button.md-icon-button(ng-click="archiveItem($event)", aria-label="archive tournaments")
ng-md-icon(icon="archive")
md-tooltip Archive tournament
md-button.md-icon-button(ng-click, aria-label="remove tournaments")
ng-md-icon(icon="delete", ng-click="removeItem($event)")
md-button.md-icon-button(ng-click="removeItem($event)", aria-label="remove tournaments")
ng-md-icon(icon="delete")
md-tooltip Remove tournament

md-data-table-container
Expand Down
12 changes: 6 additions & 6 deletions src/jade/partials/managers/user-manage.jade
Expand Up @@ -54,14 +54,14 @@ script(type="text/ng-template", id="/user-manage")
md-data-table-toolbar(ng-show="selected.length")
div {{selected.length}} {{selected.length > 1 ? 'people' : 'person'}} selected
div(flex)
md-button.md-icon-button(aria-label="add to player bucket")
ng-md-icon(icon="group_add", ng-click="addToPlayerBucket()")
md-button.md-icon-button(ng-click="addToPlayerBucket()", aria-label="add to player bucket")
ng-md-icon(icon="group_add")
md-tooltip Add to player bucket
md-button.md-icon-button(ng-if="selected.length == 1", aria-label="edit user")
ng-md-icon(icon="edit", ng-click="editItem($event)")
md-button.md-icon-button(ng-if="selected.length == 1", ng-click="editItem($event)", aria-label="edit user")
ng-md-icon(icon="edit")
md-tooltip Edit player
md-button.md-icon-button(ng-click, aria-label="remove users")
ng-md-icon(icon="delete", ng-click="removeItem($event)")
md-button.md-icon-button(ng-click="removeItem($event)", aria-label="remove users")
ng-md-icon(icon="delete")
md-tooltip Remove player

md-data-table-container
Expand Down

0 comments on commit 7a77ba2

Please sign in to comment.