Fix aria labels on custom notifications modal
This commit is contained in:
parent
f6d8245568
commit
f4b6865aef
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
|||
.modal.fade{ tabindex: "-1", role: "dialog", id: notifications_menu_identifier("modal", notification_setting), aria: { labelledby: "custom-notifications-title" } }
|
||||
.modal.fade{ tabindex: "-1", role: "dialog", id: notifications_menu_identifier("modal", notification_setting), "aria-labelledby": "custom-notifications-title" }
|
||||
.modal-dialog
|
||||
.modal-content
|
||||
.modal-header
|
||||
%button.close{ type: "button", data: { dismiss: "modal" }, aria: { label: "close" } }
|
||||
%span{ aria: { hidden: "true" } } ×
|
||||
%button.close{ type: "button", "aria-label": "close", data: { dismiss: "modal" } }
|
||||
%span{ "aria-hidden": "true" } } ×
|
||||
%h4#custom-notifications-title.modal-title
|
||||
Custom notification events
|
||||
|
||||
|
|
Loading…
Reference in a new issue