Changes between Initial Version and Version 2 of Ticket #8089
- Timestamp:
- Jan 29, 2011, 6:38:06 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8089
-
Property
Priority
changed from
undecided
tolow
-
Property
Status
changed from
new
toclosed
-
Property
Component
changed from
unfiled
toattributes
-
Property
Resolution
changed from
to
invalid
-
Property
Priority
changed from
-
Ticket #8089 – Description
initial v2 2 2 3 3 This does not work without quotes: 4 {{{ 4 5 $mydialog.attr({ 5 role : 'dialog',6 aria-hidden : 'false',7 aria-labelledby : 'top'6 role : 'dialog', 7 aria-hidden : 'false', 8 aria-labelledby : 'top' 8 9 }); 9 10 Error in line aria-hidden: Missing : after property id10 }}} 11 Error in line aria-hidden: `Missing : after property id` 11 12 12 13 It works with quotes only: 13 14 {{{ 14 15 $mydialog.attr({ 15 'role' : 'dialog',16 'aria-hidden' : 'false',17 'aria-labelledby' : 'top'16 'role' : 'dialog', 17 'aria-hidden' : 'false', 18 'aria-labelledby' : 'top' 18 19 }); 19 20 20 }}}