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

Commit

Permalink
Fix variable in data-ensure
Browse files Browse the repository at this point in the history
Summary: I broke this exercise in the previous diff by making A_RADIUS dependent on itself.

Reviewers: emily, eater

Reviewed By: eater

Differential Revision: http://phabricator.khanacademy.org/D14470
  • Loading branch information
petercollingridge committed Nov 11, 2014
1 parent 19123e5 commit 5a51a39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
<div data-ensure="A_RADIUS > 1 && A_RADIUS <= 10">
<var id="ANSWER_RADIUS">randRange(1, 10)</var>
<var id="B_RADIUS">randRange(1, 10)</var>
<var id="A_RADIUS">A_RADIUS * B_RADIUS</var>
<var id="A_RADIUS">ANSWER_RADIUS * B_RADIUS</var>
</div>

<var id="ANSWER_RADIUS_REP">"\\orange{" + ANSWER_RADIUS + "}"</var>
Expand Down

0 comments on commit 5a51a39

Please sign in to comment.