Commit e4ad2b72 by Stephen Sanchez Committed by Brian Talbot

removing is--expanded class.

parent cefcb85f
...@@ -11,13 +11,11 @@ function OpenAssessmentBlock(runtime, element) { ...@@ -11,13 +11,11 @@ function OpenAssessmentBlock(runtime, element) {
* Utility functions * Utility functions
*/ */
function collapse(element) { function collapse(element) {
element.removeClass("is--expanded");
element.addClass("is--collapsed"); element.addClass("is--collapsed");
} }
function expand(element) { function expand(element) {
element.addClass("is--collapsed"); element.addClass("is--collapsed");
element.removeClass("is--expanded");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment