Skip to content

Commit ab99976

Browse files
committed
Update checkbox_tree.md
1 parent 870aaa4 commit ab99976

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

checkbox_tree.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,13 @@ __The purpose of this test is to determine your ability to create custom compone
8989
### Data Load and Transformation
9090

9191
1. Perform an ajax call like so:
92-
<pre>$.ajax({
93-
url: "https://rawgit.com/cskevint/interview/master/checkbox_tree.json"
94-
}).done(function (result) {
95-
$(document.body).append(JSON.stringify(result));
96-
});</pre>
92+
93+
$.ajax({
94+
url: "https://rawgit.com/cskevint/interview/master/checkbox_tree.json"
95+
}).done(function (result) {
96+
$(document.body).append(JSON.stringify(result));
97+
});
98+
9799
2. This will call a __window.data__ function with the resulting JSON string as the argument.
98100
3. You will need to parse it and transform it to look like the structure above as _input for the component_.
99101

0 commit comments

Comments
 (0)