Skip to content

Commit

Permalink
Demos: Fix custom renderer demo - use jsonp to request users data
Browse files Browse the repository at this point in the history
Fixes #492
  • Loading branch information
tabalinas committed Oct 23, 2016
1 parent 318248a commit 6f2698a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/custom-row-renderer.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1>Custom Row Renderer</h1>

$.ajax({
url: 'http://api.randomuser.me/?results=40',
dataType: 'json',
dataType: 'jsonp',
success: function(data){
deferred.resolve(data.results);
}
Expand Down

0 comments on commit 6f2698a

Please sign in to comment.