Commit 56ebd6b9 by Alan Boudreault

minor fix for extra spaces

parent ca4a1e7d
...@@ -83,7 +83,7 @@ function MentoringBlock(runtime, element) { ...@@ -83,7 +83,7 @@ function MentoringBlock(runtime, element) {
for (var i = 0; i < children.length; i++) { for (var i = 0; i < children.length; i++) {
var child = children[i]; var child = children[i];
if (child.name !== undefined) { if (child.name !== undefined) {
data[child.name] = callIfExists(child, 'submit'); data[child.name] = callIfExists(child, 'submit');
} }
} }
var handlerUrl = runtime.handlerUrl(element, 'submit'); var handlerUrl = runtime.handlerUrl(element, 'submit');
......
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