source: other-projects/FileTransfer-WebSocketPair/Themes/themebuilder/bin/phantomjs-1.9.2-macosx/examples/movies.coffee@ 31525

Last change on this file since 31525 was 31525, checked in by ak19, 7 years ago

Nathan provided more stuff: Themes folder contains Sencha's Themebuilder which generates GXT Themes. It includes the .theme and generated .jar files for the project theme.

File size: 469 bytes
Line 
1# List movies from kids-in-mind.com
2
3window.cbfunc = (data) ->
4 globaldata = data
5 list = data.query.results.movie
6 for item in list
7 console.log item.title + ' [' + item.rating.MPAA.content + ']'
8 phantom.exit()
9
10el = document.createElement 'script'
11el.src =
12"http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20movies.kids-in-mind&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=window.cbfunc"
13document.body.appendChild el
Note: See TracBrowser for help on using the repository browser.