-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Accessibility: change page navigation buttons from div to button element
- Loading branch information
1 parent
c040911
commit 0b01558
Showing
8 changed files
with
27 additions
and
19 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
4 changes: 2 additions & 2 deletions
4
packages/survey-creator-angular/src/page-navigator/page-navigator.component.html
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
13 changes: 9 additions & 4 deletions
13
packages/survey-creator-knockout/src/page-navigator/page-navigator-item.html
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,9 +1,14 @@ | ||
<div class="svc-page-navigator-item-content" | ||
data-bind="click: action, key2click, css: { 'svc-page-navigator-item--selected': active, 'svc-page-navigator-item--disabled': disabled }"> | ||
<div class="svc-page-navigator-item__dot" data-bind="attr: { title: text }"></div> | ||
<button | ||
class="svc-page-navigator-item-content" | ||
data-bind="click: action, key2click, css: { 'svc-page-navigator-item--selected': active, 'svc-page-navigator-item--disabled': disabled }" | ||
> | ||
<div | ||
class="svc-page-navigator-item__dot" | ||
data-bind="attr: { title: text }" | ||
></div> | ||
|
||
<div class="svc-page-navigator-item__banner"> | ||
<span class="svc-page-navigator-item__text" data-bind="text: text"></span> | ||
<span class="svc-page-navigator-item__dot"></span> | ||
</div> | ||
</div> | ||
</button> |
4 changes: 2 additions & 2 deletions
4
packages/survey-creator-knockout/src/page-navigator/page-navigator.html
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