aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/movies.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/movies.coffee')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/movies.coffee13
1 files changed, 13 insertions, 0 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/movies.coffee b/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/movies.coffee
new file mode 100644
index 00000000..86fb5b0c
--- /dev/null
+++ b/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/movies.coffee
@@ -0,0 +1,13 @@
+# List movies from kids-in-mind.com
+
+window.cbfunc = (data) ->
+ globaldata = data
+ list = data.query.results.movie
+ for item in list
+ console.log item.title + ' [' + item.rating.MPAA.content + ']'
+ phantom.exit()
+
+el = document.createElement 'script'
+el.src =
+"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"
+document.body.appendChild el