<?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"
	>
<channel>
	<title>Comments on: updating moopop for mootools 1.2</title>
	<atom:link href="http://blog.gonchuki.com/archives/updating-moopop-for-mootools-12/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gonchuki.com/archives/updating-moopop-for-mootools-12/</link>
	<description></description>
	<pubDate>Fri, 21 Nov 2008 15:18:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Vincent</title>
		<link>http://blog.gonchuki.com/archives/updating-moopop-for-mootools-12/#comment-298</link>
		<dc:creator>Vincent</dc:creator>
		<pubDate>Fri, 14 Nov 2008 12:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gonchuki.com/?p=22#comment-298</guid>
		<description>Thanks for this script. I was wondering about something: is it possible to check if a popup is already open? I have a popup on a site that I want to open just once. It is opened like this:

window.addEvent('domready', function(){
moopop.popup($('popup-link'));
}
});

If the popup is already open, I don't want to allow the user to open it again. Also, if the user goes to another page I don't want it to open if it is already open.</description>
		<content:encoded><![CDATA[<p>Thanks for this script. I was wondering about something: is it possible to check if a popup is already open? I have a popup on a site that I want to open just once. It is opened like this:</p>
<p>window.addEvent(&#8217;domready&#8217;, function(){<br />
moopop.popup($(&#8217;popup-link&#8217;));<br />
}<br />
});</p>
<p>If the popup is already open, I don&#8217;t want to allow the user to open it again. Also, if the user goes to another page I don&#8217;t want it to open if it is already open.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gonchuki</title>
		<link>http://blog.gonchuki.com/archives/updating-moopop-for-mootools-12/#comment-290</link>
		<dc:creator>gonchuki</dc:creator>
		<pubDate>Wed, 17 Sep 2008 21:51:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gonchuki.com/?p=22#comment-290</guid>
		<description>the popup window should automatically get focus when opened if you don't click something else, and in case you did take focus away by clicking something then that was the decision of the user and we as UI designers should not impose the window on their noses.</description>
		<content:encoded><![CDATA[<p>the popup window should automatically get focus when opened if you don&#8217;t click something else, and in case you did take focus away by clicking something then that was the decision of the user and we as UI designers should not impose the window on their noses.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Al</title>
		<link>http://blog.gonchuki.com/archives/updating-moopop-for-mootools-12/#comment-273</link>
		<dc:creator>Al</dc:creator>
		<pubDate>Thu, 21 Aug 2008 17:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gonchuki.com/?p=22#comment-273</guid>
		<description>changing the popup function to include adding focus to the popup was very useful for me, you should think about including it:

popup: function(el) {
    var w = window.open(el.get('href'), el.get('name') &#124;&#124; '', el.retrieve('popupprops') &#124;&#124; '');
	if (window.focus)
		w.focus();
  }</description>
		<content:encoded><![CDATA[<p>changing the popup function to include adding focus to the popup was very useful for me, you should think about including it:</p>
<p>popup: function(el) {<br />
    var w = window.open(el.get(&#8217;href&#8217;), el.get(&#8217;name&#8217;) || &#8221;, el.retrieve(&#8217;popupprops&#8217;) || &#8221;);<br />
	if (window.focus)<br />
		w.focus();<br />
  }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://blog.gonchuki.com/archives/updating-moopop-for-mootools-12/#comment-256</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Wed, 09 Jul 2008 09:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gonchuki.com/?p=22#comment-256</guid>
		<description>Hello

Great script

I want the scipt to function on all my links. Is there any way I can achieve this without writing rel="popup" in every a href?</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>Great script</p>
<p>I want the scipt to function on all my links. Is there any way I can achieve this without writing rel=&#8221;popup&#8221; in every a href?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2008-06-25 &#124; iKeif</title>
		<link>http://blog.gonchuki.com/archives/updating-moopop-for-mootools-12/#comment-247</link>
		<dc:creator>links for 2008-06-25 &#124; iKeif</dc:creator>
		<pubDate>Wed, 25 Jun 2008 17:31:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gonchuki.com/?p=22#comment-247</guid>
		<description>[...] updating moopop for mootools 1.2 &#124; a pint of javascript (and general web stuff) Okay - this isn&#8217;t exactly groundbreaking, but when you know you&#8217;ve got to do it, or have someone update them, why not make popups easy? (tags: mootools webdev popup _blank code dev example) [...]</description>
		<content:encoded><![CDATA[<p>[...] updating moopop for mootools 1.2 | a pint of javascript (and general web stuff) Okay - this isn&#8217;t exactly groundbreaking, but when you know you&#8217;ve got to do it, or have someone update them, why not make popups easy? (tags: mootools webdev popup _blank code dev example) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Smith</title>
		<link>http://blog.gonchuki.com/archives/updating-moopop-for-mootools-12/#comment-245</link>
		<dc:creator>Greg Smith</dc:creator>
		<pubDate>Tue, 24 Jun 2008 10:51:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gonchuki.com/?p=22#comment-245</guid>
		<description>thanks very much for this</description>
		<content:encoded><![CDATA[<p>thanks very much for this</p>
]]></content:encoded>
	</item>
</channel>
</rss>
