diff --git a/examples/tweets.coffee b/examples/tweets.coffee index ca96357d..d6b16cd3 100644 --- a/examples/tweets.coffee +++ b/examples/tweets.coffee @@ -1,8 +1,8 @@ -# Get twitter status for given account (or for the default one, "HeadlessPhantom") +# Get twitter status for given account (or for the default one, "PhantomJS") page = require('webpage').create() system = require 'system' -twitterId = 'HeadlessPhantom' #< default value +twitterId = 'PhantomJS' #< default value # Route "console.log()" calls from within the Page context to the main Phantom context (i.e. current "this") page.onConsoleMessage = (msg) -> diff --git a/examples/tweets.js b/examples/tweets.js index c8f20964..d3f18c58 100644 --- a/examples/tweets.js +++ b/examples/tweets.js @@ -1,8 +1,8 @@ -// Get twitter status for given account (or for the default one, "HeadlessPhantom") +// Get twitter status for given account (or for the default one, "PhantomJS") var page = require('webpage').create(), system = require('system'), - twitterId = "HeadlessPhantom"; //< default value + twitterId = "PhantomJS"; //< default value // Route "console.log()" calls from within the Page context to the main Phantom context (i.e. current "this") page.onConsoleMessage = function(msg) {