Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
Implementation of summative exercises
Browse files Browse the repository at this point in the history
See geometry_1.html for an example. You can even set data-weight on each of
the exercise references and it will weigh each exercise as specified and then
each problem within the exercise. (In other words, it doesn't matter what the
weights of individual problems are; they are all treated as one block.)

Now modules can depend on other modules (e.g., you can use the calculus module
without manually requiring polynomials and expressions); the entire dependency
graph is specified at the top of khan-exercise.js.
  • Loading branch information
sophiebits committed Jun 14, 2011
1 parent ba30900 commit d682f4b
Show file tree
Hide file tree
Showing 4 changed files with 368 additions and 211 deletions.
11 changes: 11 additions & 0 deletions exercises/geometry_1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>Geometry 1</title>
<script src="../khan-exercise.js"></script>
</head>
<body>
<div class="exercise" data-src="circles_1.html" data-weight="2"></div>
<div class="exercise" data-src="squares_and_rectangles.html" data-weight="3"></div>
</body>
</html>
Loading

0 comments on commit d682f4b

Please sign in to comment.