<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Adding your own scripts to Web Workers</title>
	<atom:link href="http://ajaxian.com/archives/adding-your-own-scripts-to-web-workers/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/adding-your-own-scripts-to-web-workers</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Sullof</title>
		<link>http://ajaxian.com/archives/adding-your-own-scripts-to-web-workers/comment-page-1#comment-274695</link>
		<dc:creator>Sullof</dc:creator>
		<pubDate>Tue, 28 Jul 2009 00:10:02 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7137#comment-274695</guid>
		<description>I implemented web workers in Passpack 7 to speed up some jobs when Google Gears is not installed.
I simply check it with:

if (window.Worker) ...

It works well with all browsers.</description>
		<content:encoded><![CDATA[<p>I implemented web workers in Passpack 7 to speed up some jobs when Google Gears is not installed.<br />
I simply check it with:</p>
<p>if (window.Worker) &#8230;</p>
<p>It works well with all browsers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kangax</title>
		<link>http://ajaxian.com/archives/adding-your-own-scripts-to-web-workers/comment-page-1#comment-274692</link>
		<dc:creator>kangax</dc:creator>
		<pubDate>Mon, 27 Jul 2009 15:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7137#comment-274692</guid>
		<description>It&#039;s usually better to avoid double negatives. Also, true/false in that ternary is really redundant : )

var hasWorker = typeof Worker != &quot;undefined&quot;;
if (!hasWorker) { ... }</description>
		<content:encoded><![CDATA[<p>It&#8217;s usually better to avoid double negatives. Also, true/false in that ternary is really redundant : )</p>
<p>var hasWorker = typeof Worker != &#8220;undefined&#8221;;<br />
if (!hasWorker) { &#8230; }</p>
]]></content:encoded>
	</item>
</channel>
</rss>

