Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
9b99213b
Commit
9b99213b
authored
Jul 30, 2014
by
David Baumgold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Toggle aria-expanded attribute
parent
3f29fe4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
common/templates/course_modes/choose.html
+11
-2
No files found.
common/templates/course_modes/choose.html
View file @
9b99213b
...
...
@@ -18,7 +18,13 @@
var
expandCallback
=
function
(
event
)
{
event
.
preventDefault
();
$
(
this
).
next
(
'.expandable-area'
).
slideToggle
();
$
(
this
).
parent
().
toggleClass
(
'is-expanded'
);
var
title
=
$
(
this
).
parent
();
title
.
toggleClass
(
'is-expanded'
);
if
(
title
.
attr
(
"aria-expanded"
)
===
"false"
)
{
title
.
attr
(
"aria-expanded"
,
"true"
);
}
else
{
title
.
attr
(
"aria-expanded"
,
"false"
);
}
}
$
(
document
).
ready
(
function
()
{
...
...
@@ -111,7 +117,10 @@ $(document).ready(function() {
<
%
include
file=
"_contribution.html"
args=
"suggested_prices=suggested_prices, currency=currency, chosen_price=chosen_price, min_price=min_price"
/>
<div
class=
"help-tip is-expandable"
>
<h5
class=
"title title-expand"
tabindex=
"0"
><i
class=
"icon-caret-down expandable-icon"
></i>
${_("Why do I have to pay? What if I want a free honor code certificate?")}
</h5>
<h5
class=
"title title-expand"
tabindex=
"0"
aria-expanded=
"false"
role=
"link"
>
<i
class=
"icon-caret-down expandable-icon"
></i>
${_("Why do I have to pay? What if I want a free honor code certificate?")}
</h5>
<div
class=
"copy expandable-area"
>
<dl
class=
"list-faq"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment