File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff 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
91911 . 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+
97992 . This will call a __ window.data__ function with the resulting JSON string as the argument.
981003 . You will need to parse it and transform it to look like the structure above as _ input for the component_ .
99101
You can’t perform that action at this time.
0 commit comments