<?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: SimpleModal 1.3.3 Released</title>
	<atom:link href="http://www.ericmmartin.com/simplemodal-1-3-3-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/</link>
	<description></description>
	<lastBuildDate>Sun, 18 Jul 2010 17:50:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Dave</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-11414</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sat, 06 Feb 2010 10:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-11414</guid>
		<description>Hi there Eric - loved your work! 

I had a question regarding the contact form demo? I wanted to pass a variable to the php script being called. 

Here&#039;s the scenario: there are many email addresses that the user can choose to email. He clicks on one. now, I want that email to be passed on to the php script. Can you recommend a &#039;clean&#039; (and easy way) I can modify the existing files to mkae this work? I&#039;m a noobie to jquery btw!</description>
		<content:encoded><![CDATA[<p>Hi there Eric - loved your work! </p>
<p>I had a question regarding the contact form demo? I wanted to pass a variable to the php script being called. </p>
<p>Here's the scenario: there are many email addresses that the user can choose to email. He clicks on one. now, I want that email to be passed on to the php script. Can you recommend a 'clean' (and easy way) I can modify the existing files to mkae this work? I'm a noobie to jquery btw!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giuliano M.</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-11152</link>
		<dc:creator>Giuliano M.</dc:creator>
		<pubDate>Mon, 11 Jan 2010 15:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-11152</guid>
		<description>Hi Eric,

Just to let you know that I have got a simple solution and it works like a charm!

 d.container.slideDown(&#039;slow&#039;, function() {
                    setTimeout(function() {
                        var dataHeight = $(&quot;#osx-modal-data&quot;).height() + title.height() + 20;
                        var viewportHeight = $(window).height();
                        var contentHeight = viewportHeight;
                        if (dataHeight &lt; viewportHeight) {
                            contentHeight = dataHeight;
                        }
                        else {
                            contentHeight = viewportHeight;
                        }
                        d.container.animate(
							{ height: contentHeight },
							50,
							function() {
							    $(&quot;div.close&quot;, self.container).show();
							    $(&quot;#osx-modal-data&quot;, self.container).show();
							}
						);
                    }, 50);
                });


Cheers,
Giuliano M.</description>
		<content:encoded><![CDATA[<p>Hi Eric,</p>
<p>Just to let you know that I have got a simple solution and it works like a charm!</p>
<p> d.container.slideDown('slow', function() {<br />
                    setTimeout(function() {<br />
                        var dataHeight = $("#osx-modal-data").height() + title.height() + 20;<br />
                        var viewportHeight = $(window).height();<br />
                        var contentHeight = viewportHeight;<br />
                        if (dataHeight &lt; viewportHeight) {<br />
                            contentHeight = dataHeight;<br />
                        }<br />
                        else {<br />
                            contentHeight = viewportHeight;<br />
                        }<br />
                        d.container.animate(<br />
							{ height: contentHeight },<br />
							50,<br />
							function() {<br />
							    $(&quot;div.close&quot;, self.container).show();<br />
							    $(&quot;#osx-modal-data&quot;, self.container).show();<br />
							}<br />
						);<br />
                    }, 50);<br />
                });</p>
<p>Cheers,<br />
Giuliano M.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giuliano M.</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-11148</link>
		<dc:creator>Giuliano M.</dc:creator>
		<pubDate>Mon, 11 Jan 2010 12:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-11148</guid>
		<description>Hi Eric, 

Firstly, thanks for the plugin. I am using the OSX style one.  

I have got a requirement to satisfy users with different screen resolutions. I want the modal container to slide down to fully cover the browser&#039;s viewport depending on the current resolution.

Therefore if the resolution is:

- 1024x768px: The modal slides down fully within the browser&#039;s viewport, so it touches the browser&#039;s status bar. The text of the modal container is bigger than the browsers&#039; viewport. Thus, a scrollbar is needed.
- Higher than the above: The modal slides down fully within the browser&#039;s viewport, so it touches the browser&#039;s status bar. A scrollbar is not needed as the text is fully displayed. 

So, I changed the OSX plugin slightly but couldn&#039;t get the desired outcome.

#osx-modal-data {overflow: auto}; for the scrollbar to appear only within the content data. Also, I changed the js file slightly trying different things in the height variable of the slidedown function but no success.

Have you got any ideas?

Cheers,
Giuliano</description>
		<content:encoded><![CDATA[<p>Hi Eric, </p>
<p>Firstly, thanks for the plugin. I am using the OSX style one.  </p>
<p>I have got a requirement to satisfy users with different screen resolutions. I want the modal container to slide down to fully cover the browser's viewport depending on the current resolution.</p>
<p>Therefore if the resolution is:</p>
<p>- 1024x768px: The modal slides down fully within the browser's viewport, so it touches the browser's status bar. The text of the modal container is bigger than the browsers' viewport. Thus, a scrollbar is needed.<br />
- Higher than the above: The modal slides down fully within the browser's viewport, so it touches the browser's status bar. A scrollbar is not needed as the text is fully displayed. </p>
<p>So, I changed the OSX plugin slightly but couldn't get the desired outcome.</p>
<p>#osx-modal-data {overflow: auto}; for the scrollbar to appear only within the content data. Also, I changed the js file slightly trying different things in the height variable of the slidedown function but no success.</p>
<p>Have you got any ideas?</p>
<p>Cheers,<br />
Giuliano</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Martin</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-10950</link>
		<dc:creator>Eric Martin</dc:creator>
		<pubDate>Fri, 18 Dec 2009 02:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-10950</guid>
		<description>@Ronny - just for you, I created &lt;a href=&quot;/projects/simplemodal-login/&quot; rel=&quot;nofollow&quot;&gt;SimpleModal Login&lt;/a&gt;. Try it out and let me know if you have any feedback.</description>
		<content:encoded><![CDATA[<p>@Ronny - just for you, I created <a href="/projects/simplemodal-login/" rel="nofollow">SimpleModal Login</a>. Try it out and let me know if you have any feedback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronny</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-10866</link>
		<dc:creator>Ronny</dc:creator>
		<pubDate>Tue, 08 Dec 2009 13:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-10866</guid>
		<description>Hi Eric,
Thanks for this plugin. Any way to use it for Wordpress login?</description>
		<content:encoded><![CDATA[<p>Hi Eric,<br />
Thanks for this plugin. Any way to use it for WordPress login?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-10834</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Sat, 05 Dec 2009 23:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-10834</guid>
		<description>Hello again.

I&#039;ve been messing with SimpleModal, in order to use it like a LightBox to display a single image. But there seems to be a bug with it.
I removed all the paddings and margins (also defined width/height as auto), so the image would fit perfectly, but there&#039;s always a space of 5px height on the bottom. All of the other margins are good.
I tried different sizes, but that 5px are always there.
I got a workaround for it (but it&#039;s stupid): give the container the same background color as the borders; increase the top, left and right borders to 5px and remove the bottom one.

It&#039;s kind of stupid, but it works.</description>
		<content:encoded><![CDATA[<p>Hello again.</p>
<p>I've been messing with SimpleModal, in order to use it like a LightBox to display a single image. But there seems to be a bug with it.<br />
I removed all the paddings and margins (also defined width/height as auto), so the image would fit perfectly, but there's always a space of 5px height on the bottom. All of the other margins are good.<br />
I tried different sizes, but that 5px are always there.<br />
I got a workaround for it (but it's stupid): give the container the same background color as the borders; increase the top, left and right borders to 5px and remove the bottom one.</p>
<p>It's kind of stupid, but it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-10811</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Sat, 05 Dec 2009 00:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-10811</guid>
		<description>I&#039;ve been around the code and taking it apart.
I&#039;m trying to inject some queries on the contact.php code, but so far I couldn&#039;t get it to work.

Thanks for considering the db access.</description>
		<content:encoded><![CDATA[<p>I've been around the code and taking it apart.<br />
I'm trying to inject some queries on the contact.php code, but so far I couldn't get it to work.</p>
<p>Thanks for considering the db access.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Martin</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-10809</link>
		<dc:creator>Eric Martin</dc:creator>
		<pubDate>Fri, 04 Dec 2009 22:32:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-10809</guid>
		<description>@Keith - I&#039;ve actually been considering this for the next release. It would function much the same as the blog comments. Now, I just need to find the time to work on it ;)</description>
		<content:encoded><![CDATA[<p>@Keith - I've actually been considering this for the next release. It would function much the same as the blog comments. Now, I just need to find the time to work on it ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-10807</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Fri, 04 Dec 2009 21:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-10807</guid>
		<description>Is it possible to conciliate this amazing plugin with database access.
I would like to use the SimpleModal to save comments into a database.
I&#039;ve been looking into the code, but it seems oriented to Send-to-mail stuff.

Thanks</description>
		<content:encoded><![CDATA[<p>Is it possible to conciliate this amazing plugin with database access.<br />
I would like to use the SimpleModal to save comments into a database.<br />
I've been looking into the code, but it seems oriented to Send-to-mail stuff.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: greg</title>
		<link>http://www.ericmmartin.com/simplemodal-1-3-3-released/#comment-10701</link>
		<dc:creator>greg</dc:creator>
		<pubDate>Fri, 27 Nov 2009 17:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=905#comment-10701</guid>
		<description>Very slick
Thanks</description>
		<content:encoded><![CDATA[<p>Very slick<br />
Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
