From 281d291cfbdac231de4f65eb9757845a93631dd3 Mon Sep 17 00:00:00 2001 From: Ariya Hidayat Date: Sun, 15 Jul 2012 02:13:35 -0700 Subject: [PATCH] Use the new Twitter handle for the examples. http://code.google.com/p/phantomjs/issues/detail?id=609 --- examples/tweets.coffee | 4 ++-- examples/tweets.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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) {