<?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 for chadly.net</title>
	<atom:link href="http://chadly.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://chadly.net</link>
	<description>299,792,458 meters/second ought to be enough for anybody</description>
	<lastBuildDate>Thu, 06 Dec 2012 22:26:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Lightbox for YouTube Videos by Mick</title>
		<link>http://chadly.net/2009/01/lightbox-for-youtube-videos/#comment-611</link>
		<dc:creator>Mick</dc:creator>
		<pubDate>Thu, 06 Dec 2012 22:26:42 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/01/29/Lightbox-for-YouTube-Videos.aspx#comment-611</guid>
		<description><![CDATA[Howdy Chadly... I recently stumbled upon your lovely Fancybox plugin.  I realized out of the box that it no longer works with jQuery v1.8.3.  I fixed the issues, and it now functions correctly under jQuery v1.8.3.

I could not find an email address for you (you might want to change that, add a contact link or something), but I will place the fix here as a general description.  If you want further information for any reason, just shoot me an email.

The fix is as follows:

Update the:

$(&quot;a[@rel*=fancyvideo]&quot;).fancybox () 

call to 

$(&quot;a[rel=fancyvideo]&quot;).fancybox

where you initialize your JS code

Update line #73 in jquery.fancybox.1.0.0.js in the same way (removing the @ and the * from the selector)

Two more things must be fixed before it works under the current version.  One:

Change line #19 in jquery.fancybox.1.0.0.js from
        return this.each(function() {

to 
        return $(this).each(function() {

---

Last thing to do is to update line #356 (in same file) from
        return parseInt($.curCSS(el.jquery ? el[0] : el, prop, true)) &#124;&#124; 0;
to
        return parseInt($(this).css(el.jquery ? el[0] : el, prop, true)) &#124;&#124; 0;


Those are all of the changes I made in order to get this plugin working under the newest version of jQuery.]]></description>
		<content:encoded><![CDATA[<p>Howdy Chadly&#8230; I recently stumbled upon your lovely Fancybox plugin.  I realized out of the box that it no longer works with jQuery v1.8.3.  I fixed the issues, and it now functions correctly under jQuery v1.8.3.</p>
<p>I could not find an email address for you (you might want to change that, add a contact link or something), but I will place the fix here as a general description.  If you want further information for any reason, just shoot me an email.</p>
<p>The fix is as follows:</p>
<p>Update the:</p>
<p>$(&#8220;a[@rel*=fancyvideo]&#8220;).fancybox () </p>
<p>call to </p>
<p>$(&#8220;a[rel=fancyvideo]&#8220;).fancybox</p>
<p>where you initialize your JS code</p>
<p>Update line #73 in jquery.fancybox.1.0.0.js in the same way (removing the @ and the * from the selector)</p>
<p>Two more things must be fixed before it works under the current version.  One:</p>
<p>Change line #19 in jquery.fancybox.1.0.0.js from<br />
        return this.each(function() {</p>
<p>to<br />
        return $(this).each(function() {</p>
<p>&#8212;</p>
<p>Last thing to do is to update line #356 (in same file) from<br />
        return parseInt($.curCSS(el.jquery ? el[0] : el, prop, true)) || 0;<br />
to<br />
        return parseInt($(this).css(el.jquery ? el[0] : el, prop, true)) || 0;</p>
<p>Those are all of the changes I made in order to get this plugin working under the newest version of jQuery.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating NHibernate Linq Query from arbitrary Criteria by Ivan</title>
		<link>http://chadly.net/2009/10/creating-nhibernate-linq-query-from-arbitrary-criteria/#comment-11</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Fri, 30 Nov 2012 06:46:56 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/10/30/Creating-NHibernate-Linq-Query-from-arbitrary-Criteria.aspx#comment-11</guid>
		<description><![CDATA[I like it. Just have to test it if it works.]]></description>
		<content:encoded><![CDATA[<p>I like it. Just have to test it if it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on It&#8217;s Tough Times Out There by Rick Vidallon</title>
		<link>http://chadly.net/2009/03/its-tough-times-out-there/#comment-181</link>
		<dc:creator>Rick Vidallon</dc:creator>
		<pubDate>Sun, 21 Oct 2012 17:07:11 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/09/Its-Tough-Times-Out-There.aspx#comment-181</guid>
		<description><![CDATA[I feel ya. Been there 1000 times and always sucks. Very last time was in 2000. I started my own small web dev company and have never looked back. Much longer hours but phone still works, lights are still on and managing to put some away.

On the career front there seems to be lots more .NET jobs in Virginia, Hampton Roads area in all sectors. Send me a private email and will be glad to share what I know.

BTW... you Lightbox/ You Tube script saved me a sleepless night. So I owe you one.
~ Rick]]></description>
		<content:encoded><![CDATA[<p>I feel ya. Been there 1000 times and always sucks. Very last time was in 2000. I started my own small web dev company and have never looked back. Much longer hours but phone still works, lights are still on and managing to put some away.</p>
<p>On the career front there seems to be lots more .NET jobs in Virginia, Hampton Roads area in all sectors. Send me a private email and will be glad to share what I know.</p>
<p>BTW&#8230; you Lightbox/ You Tube script saved me a sleepless night. So I owe you one.<br />
~ Rick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tortoise SVN Settings for Beyond Compare 3 by A person</title>
		<link>http://chadly.net/2009/04/tortoise-svn-settings-for-beyond-compare-3/#comment-121</link>
		<dc:creator>A person</dc:creator>
		<pubDate>Thu, 02 Aug 2012 18:25:21 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/04/13/Tortoise-SVN-Settings-for-Beyond-Compare-3.aspx#comment-121</guid>
		<description><![CDATA[Works on Windows Server 2008 R2]]></description>
		<content:encoded><![CDATA[<p>Works on Windows Server 2008 R2</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BDD with xUnit.net by Danny Tuppeny</title>
		<link>http://chadly.net/2009/04/bdd-with-xunit-net/#comment-111</link>
		<dc:creator>Danny Tuppeny</dc:creator>
		<pubDate>Tue, 03 Apr 2012 13:36:51 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/04/20/BDD-with-xUnit.aspx#comment-111</guid>
		<description><![CDATA[You need to add it to NuGet! :(]]></description>
		<content:encoded><![CDATA[<p>You need to add it to NuGet! <img src='http://chadly.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lightbox for YouTube Videos by Gary</title>
		<link>http://chadly.net/2009/01/lightbox-for-youtube-videos/#comment-601</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Mon, 09 Jan 2012 19:51:36 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/01/29/Lightbox-for-YouTube-Videos.aspx#comment-601</guid>
		<description><![CDATA[little help.  i have the light box working, but the video isn&#039;&#039;t displaying...

IE8:
&quot;This content cannot be displayed in a frame. To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame.&quot;

FIREFOX &amp; CHROME:
Blank Lightbox.]]></description>
		<content:encoded><![CDATA[<p>little help.  i have the light box working, but the video isn&#8221;t displaying&#8230;</p>
<p>IE8:<br />
&#8220;This content cannot be displayed in a frame. To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame.&#8221;</p>
<p>FIREFOX &amp; CHROME:<br />
Blank Lightbox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lightbox for YouTube Videos by Will</title>
		<link>http://chadly.net/2009/01/lightbox-for-youtube-videos/#comment-591</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Mon, 09 Jan 2012 00:37:53 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/01/29/Lightbox-for-YouTube-Videos.aspx#comment-591</guid>
		<description><![CDATA[How did you fix this for Jquery 1.4.4?  Any advice would be appreciated.
Thank you!]]></description>
		<content:encoded><![CDATA[<p>How did you fix this for Jquery 1.4.4?  Any advice would be appreciated.<br />
Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lightbox for YouTube Videos by Avner</title>
		<link>http://chadly.net/2009/01/lightbox-for-youtube-videos/#comment-581</link>
		<dc:creator>Avner</dc:creator>
		<pubDate>Sat, 07 Jan 2012 00:55:29 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/01/29/Lightbox-for-YouTube-Videos.aspx#comment-581</guid>
		<description><![CDATA[I can&#039;&#039;t get it work. Clicking makes the screen darker but then the browser goes to youtube.com instead of opening a light box.]]></description>
		<content:encoded><![CDATA[<p>I can&#8221;t get it work. Clicking makes the screen darker but then the browser goes to youtube.com instead of opening a light box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lightbox for YouTube Videos by Emil</title>
		<link>http://chadly.net/2009/01/lightbox-for-youtube-videos/#comment-571</link>
		<dc:creator>Emil</dc:creator>
		<pubDate>Fri, 30 Dec 2011 20:55:04 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/01/29/Lightbox-for-YouTube-Videos.aspx#comment-571</guid>
		<description><![CDATA[Hi. Nice script! Thanks a lot.
Vondering, how I make it auto play?]]></description>
		<content:encoded><![CDATA[<p>Hi. Nice script! Thanks a lot.<br />
Vondering, how I make it auto play?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lightbox for YouTube Videos by vikas</title>
		<link>http://chadly.net/2009/01/lightbox-for-youtube-videos/#comment-561</link>
		<dc:creator>vikas</dc:creator>
		<pubDate>Mon, 19 Dec 2011 18:38:07 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/01/29/Lightbox-for-YouTube-Videos.aspx#comment-561</guid>
		<description><![CDATA[hey, i couldnt understand it. I want to add this fancybox facility to my blogger blog page, where the page name is video gallery. when people click on particular thumbnail that video should be opened in fancybox. plz help me. mail me at vikasdevde@gmail.com ..........as i will not come to know if you reply me here. so plz help..i really need help]]></description>
		<content:encoded><![CDATA[<p>hey, i couldnt understand it. I want to add this fancybox facility to my blogger blog page, where the page name is video gallery. when people click on particular thumbnail that video should be opened in fancybox. plz help me. mail me at <a href="mailto:vikasdevde@gmail.com">vikasdevde@gmail.com</a> &#8230;&#8230;&#8230;.as i will not come to know if you reply me here. so plz help..i really need help</p>
]]></content:encoded>
	</item>
</channel>
</rss>
