<?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: Notify bar</title>
	<atom:link href="http://www.dmitri.me/blog/notify-bar/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dmitri.me/blog/notify-bar/</link>
	<description>Dmitri Smirnov. Web development in Estonia.</description>
	<lastBuildDate>Fri, 08 Jan 2010 19:33:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jerry</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-5171</link>
		<dc:creator>Jerry</dc:creator>
		<pubDate>Fri, 08 Jan 2010 19:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-5171</guid>
		<description>Your settings WERE updated.  Proper English will give your example more credibility.</description>
		<content:encoded><![CDATA[<p>Your settings WERE updated.  Proper English will give your example more credibility.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Nankin</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-5123</link>
		<dc:creator>Joshua Nankin</dc:creator>
		<pubDate>Sun, 03 Jan 2010 21:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-5123</guid>
		<description>Also, it looks like your word press comments are throwing php exceptions.</description>
		<content:encoded><![CDATA[<p>Also, it looks like your word press comments are throwing php exceptions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Nankin</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-5122</link>
		<dc:creator>Joshua Nankin</dc:creator>
		<pubDate>Sun, 03 Jan 2010 21:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-5122</guid>
		<description>Hey Dmitri.  Great plugin.  I did notice, however, that in using &#039;this&#039; for your settings, you clobber some of jQuery&#039;s internal variables.  i.e. jQuery uses the object this.className when running $(selector).addClass.  Since notify bar alters this to its own string, addClass/removeClass began throwing exceptions.

I changed all instances of &#039;this&#039; to &#039;notifyBarNS&#039; and the problem went away.

Thanks,
Josh</description>
		<content:encoded><![CDATA[<p>Hey Dmitri.  Great plugin.  I did notice, however, that in using &#8216;this&#8217; for your settings, you clobber some of jQuery&#8217;s internal variables.  i.e. jQuery uses the object this.className when running $(selector).addClass.  Since notify bar alters this to its own string, addClass/removeClass began throwing exceptions.</p>
<p>I changed all instances of &#8216;this&#8217; to &#8216;notifyBarNS&#8217; and the problem went away.</p>
<p>Thanks,<br />
Josh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RobertM</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-4870</link>
		<dc:creator>RobertM</dc:creator>
		<pubDate>Fri, 30 Oct 2009 11:29:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-4870</guid>
		<description>Nice work. If tou want the bar to stay ontop of browser add this line in the plugin code where the other css properties are:
.css(&#039;top&#039;,$(window).scrollTop()+&#039;px&#039;)
and then, just before the slideDown call enter this line:
$(window).scroll(function(){bar.css(&#039;top&#039;,$(window).scrollTop()+&#039;px&#039;);});</description>
		<content:encoded><![CDATA[<p>Nice work. If tou want the bar to stay ontop of browser add this line in the plugin code where the other css properties are:<br />
.css(&#8216;top&#8217;,$(window).scrollTop()+&#8217;px&#8217;)<br />
and then, just before the slideDown call enter this line:<br />
$(window).scroll(function(){bar.css(&#8216;top&#8217;,$(window).scrollTop()+&#8217;px&#8217;);});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray Linder</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-4813</link>
		<dc:creator>Ray Linder</dc:creator>
		<pubDate>Mon, 19 Oct 2009 04:43:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-4813</guid>
		<description>Does anyone know how to tie this in with a submit in an ASP.NET MVC Preview 2 application and load the different .css based on the POST action result?</description>
		<content:encoded><![CDATA[<p>Does anyone know how to tie this in with a submit in an ASP.NET MVC Preview 2 application and load the different .css based on the POST action result?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmitri</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-4792</link>
		<dc:creator>Dmitri</dc:creator>
		<pubDate>Thu, 15 Oct 2009 11:12:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-4792</guid>
		<description>manoj, you can place close button using CSS and HTML and add command. In jQuery application:

$(&quot;#close&quot;).click(function() {
  $(&quot;#notifyBar&quot;).slideUp(&quot;fast&quot;);
});

Or someting like that. When I will have time I will think about close button. Now I haven&#039;t</description>
		<content:encoded><![CDATA[<p>manoj, you can place close button using CSS and HTML and add command. In jQuery application:</p>
<p>$(&#8220;#close&#8221;).click(function() {<br />
  $(&#8220;#notifyBar&#8221;).slideUp(&#8220;fast&#8221;);<br />
});</p>
<p>Or someting like that. When I will have time I will think about close button. Now I haven&#8217;t</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manoj</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-4791</link>
		<dc:creator>manoj</dc:creator>
		<pubDate>Thu, 15 Oct 2009 10:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-4791</guid>
		<description>Is it all right to comment setTimeout - that makes the notification sticky. How about inserting a close button?</description>
		<content:encoded><![CDATA[<p>Is it all right to comment setTimeout &#8211; that makes the notification sticky. How about inserting a close button?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manoj</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-4790</link>
		<dc:creator>manoj</dc:creator>
		<pubDate>Thu, 15 Oct 2009 09:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-4790</guid>
		<description>Is it possible to make the notification bar sticky? Perhaps with a close button ? Appreciate clues.</description>
		<content:encoded><![CDATA[<p>Is it possible to make the notification bar sticky? Perhaps with a close button ? Appreciate clues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Lannon</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-4581</link>
		<dc:creator>John Lannon</dc:creator>
		<pubDate>Tue, 25 Aug 2009 19:42:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-4581</guid>
		<description>Nice widget, Dmitri. I made a little change to have the notifyBar remove itself from the dom upon completion as multiple calls were adding multiple divs.

http://pastie.textmate.org/594518</description>
		<content:encoded><![CDATA[<p>Nice widget, Dmitri. I made a little change to have the notifyBar remove itself from the dom upon completion as multiple calls were adding multiple divs.</p>
<p><a href="http://pastie.textmate.org/594518" rel="nofollow">http://pastie.textmate.org/594518</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CoryMathews.com &#187; 12 Slick jQuery Plugins</title>
		<link>http://www.dmitri.me/blog/notify-bar/comment-page-1/#comment-4557</link>
		<dc:creator>CoryMathews.com &#187; 12 Slick jQuery Plugins</dc:creator>
		<pubDate>Mon, 17 Aug 2009 12:41:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.dmitri.me/blog/?p=245#comment-4557</guid>
		<description>[...] shows a notify bar (like on Twitter&#039;s webpage) Plugin Page [...]</description>
		<content:encoded><![CDATA[<p>[...] shows a notify bar (like on Twitter&#8217;s webpage) Plugin Page [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
