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
c7e72c28
Commit
c7e72c28
authored
Feb 20, 2012
by
Kyle Fiedler
Browse files
Options
Browse Files
Download
Plain Diff
merged heads
parents
c423e17c
0807cf81
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
9 deletions
+18
-9
6002x-faq.html
+13
-4
book_toc.html
+0
-0
profile_graphs.js
+1
-1
staticbook.html
+4
-4
No files found.
6002x-faq.html
View file @
c7e72c28
...
...
@@ -55,10 +55,19 @@ assignments and exams. </p>
<h2>
I just enrolled for the course. I have not received any form
of acknowledgement that I have enrolled.
</h2>
<p>
You should receive a single activation e-mail. If you did not,
check your spam folder, or try to register again with your correct
e-mail address and a new username (most errors are from typos in
e-mail addresses).
</p>
<p>
You should receive a single activation e-mail. If you did not, the
most common issues are:
<ul>
<li>
Typo in e-mail address
<li>
Old browser. We recommend trying a modern version of Firefox or Chrome
<li>
JavaScript disabled
<li>
Activation e-mail in spam folder. Check spam folder.
<li>
Non-unique username. Try adding a random string at the end.
</ul>
<p>
If you run into issues, try recreating your account. There is no need
to do anything about the old account, if any. If it is not activated
through the link in the e-mail, it will disappear later.
<h2>
How do I drop the course?
</h2>
...
...
book_toc.html
View file @
c7e72c28
This diff is collapsed.
Click to expand it.
profile_graphs.js
View file @
c7e72c28
...
...
@@ -127,7 +127,7 @@ $(function () {
var
plot
=
$
.
plot
(
$grade_detail_graph
,
series
,
options
);
var
o
=
plot
.
pointOffset
({
x
:
$
{
overviewBarX
}
,
y
:
$
{
totalScore
}});
$grade_detail_graph
.
append
(
'<div style="position:absolute;left:'
+
(
o
.
left
-
12
)
+
'px;top:'
+
(
o
.
top
-
20
)
+
'px">${"{
:.0%}".format(
totalScore)}</div>'
);
$grade_detail_graph
.
append
(
'<div style="position:absolute;left:'
+
(
o
.
left
-
12
)
+
'px;top:'
+
(
o
.
top
-
20
)
+
'px">${"{
totalscore:.0%}".format(totalscore=
totalScore)}</div>'
);
// //Rotate the x-axis labels
// var rotateValue = "rotate(-60deg)";
...
...
staticbook.html
View file @
c7e72c28
...
...
@@ -16,19 +16,19 @@ function goto_page(n) {
if
(
n
<
10
)
{
prefix
=
"00"
;
}
$
(
"#bookpage"
).
attr
(
"src"
,
"${ settings.BOOK_URL }p"
+
prefix
+
n
+
".
jp
g"
);
$
(
"#bookpage"
).
attr
(
"src"
,
"${ settings.BOOK_URL }p"
+
prefix
+
n
+
".
pn
g"
);
};
function
prev_page
()
{
var
newpage
=
page
-
1
;
if
(
newpage
<
1
)
newpage
=
1
;
if
(
newpage
<
0
)
newpage
=
0
;
goto_page
(
newpage
);
log_event
(
"book"
,
{
"type"
:
"prevpage"
,
"new"
:
page
});
}
function
next_page
()
{
var
newpage
=
page
+
1
;
if
(
newpage
>
1
764
)
newpage
=
1764
;
if
(
newpage
>
1
008
)
newpage
=
1008
;
goto_page
(
newpage
);
log_event
(
"book"
,
{
"type"
:
"nextpage"
,
"new"
:
page
});
}
...
...
@@ -56,7 +56,7 @@ function next_page() {
</ul>
</nav>
<img
id=
"bookpage"
src=
"${ settings.BOOK_URL }p${ "
%
03i
"%(
page
)
}.
jp
g
"
>
<img
id=
"bookpage"
src=
"${ settings.BOOK_URL }p${ "
%
03i
"%(
page
)
}.
pn
g
"
>
</section>
</section>
</div>
...
...
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