<?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: TouchTouch &#8211; A Touch Optimized Gallery Plugin</title>
	<atom:link href="http://tutorialzine.com/2012/04/mobile-touch-gallery/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/</link>
	<description>Web Development Tutorials &#38; Resources</description>
	<lastBuildDate>Tue, 18 Jun 2013 16:23:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Makdas</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-81767</link>
		<dc:creator>Makdas</dc:creator>
		<pubDate>Thu, 16 May 2013 22:25:19 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-81767</guid>
		<description><![CDATA[Brilliant Matt, thanks]]></description>
		<content:encoded><![CDATA[<p>Brilliant Matt, thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rai</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-80911</link>
		<dc:creator>Rai</dc:creator>
		<pubDate>Sat, 20 Apr 2013 18:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-80911</guid>
		<description><![CDATA[Hello Martin,

first i want to say &quot;Thank you&quot; for this nice plugin.

I have used TouchTouch on a Website and get the same problem like:
https://github.com/martinaglv/touchTouch/issues/1

Changing 
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;/&gt; 
to
&lt;meta name=&quot;viewport&quot;  content=&quot;width=device-width, initial-scale=1.0, user-scalable=0, maximum-scale=1.0&quot; /&gt;

have fixed the problem by me.

tested on Samsung Galaxy Ace and Motorola Defy+]]></description>
		<content:encoded><![CDATA[<p>Hello Martin,</p>
<p>first i want to say &quot;Thank you&quot; for this nice plugin.</p>
<p>I have used TouchTouch on a Website and get the same problem like:<br />
https://github.com/martinaglv/touchTouch/issues/1</p>
<p>Changing<br />
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;/&gt;<br />
to<br />
&lt;meta name=&quot;viewport&quot;  content=&quot;width=device-width, initial-scale=1.0, user-scalable=0, maximum-scale=1.0&quot; /&gt;</p>
<p>have fixed the problem by me.</p>
<p>tested on Samsung Galaxy Ace and Motorola Defy+</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cibulka</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-80567</link>
		<dc:creator>Cibulka</dc:creator>
		<pubDate>Mon, 08 Apr 2013 11:29:30 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-80567</guid>
		<description><![CDATA[Feantury, I know it&#039;s been a year, but I am struggling to get TouchTouch script to work on content loaded by jQuery load function as well. Did you ever resolve that issue?

Thank you very much! cibulka.me[at]gmail.com]]></description>
		<content:encoded><![CDATA[<p>Feantury, I know it's been a year, but I am struggling to get TouchTouch script to work on content loaded by jQuery load function as well. Did you ever resolve that issue?</p>
<p>Thank you very much! cibulka.me[at]gmail.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kane Ford</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-78451</link>
		<dc:creator>Kane Ford</dc:creator>
		<pubDate>Fri, 01 Mar 2013 14:11:43 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-78451</guid>
		<description><![CDATA[How do I make it so the captions beneath each image can be longer than 1 line? I set white-space:auto in .thumbs a:after but the captions overlap the thumbnails that are below. :\]]></description>
		<content:encoded><![CDATA[<p>How do I make it so the captions beneath each image can be longer than 1 line? I set white-space:auto in .thumbs a:after but the captions overlap the thumbnails that are below. :\</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jollysod</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-78252</link>
		<dc:creator>jollysod</dc:creator>
		<pubDate>Sat, 23 Feb 2013 11:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-78252</guid>
		<description><![CDATA[Terrific plugin.
Had a bit of an issue with ie not respecting aspect ratios of images when resizing the window.
Found an answer here:
(http://stackoverflow.com/questions/3642541/max-width-and-max-height-for-scaling-images-in-internet-explorer).
Quick fix: add &quot;width:auto&quot; and &quot;height:auto&quot;  to touchTouch.css...

&lt;pre&gt;
#gallerySlider .placeholder img{
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	height:auto;
	width:auto;
	vertical-align: middle;
}
&lt;/pre&gt;

Hope this comes in handy,
JS]]></description>
		<content:encoded><![CDATA[<p>Terrific plugin.<br />
Had a bit of an issue with ie not respecting aspect ratios of images when resizing the window.<br />
Found an answer here:<br />
(http://stackoverflow.com/questions/3642541/max-width-and-max-height-for-scaling-images-in-internet-explorer).<br />
Quick fix: add &quot;width:auto&quot; and &quot;height:auto&quot;  to touchTouch.css...</p>
<pre>
#gallerySlider .placeholder img{
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	height:auto;
	width:auto;
	vertical-align: middle;
}
</pre>
<p>Hope this comes in handy,<br />
JS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-78075</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 17 Feb 2013 09:28:41 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-78075</guid>
		<description><![CDATA[I can&#039;t get it to work with Quicksand, sadly, since I can&#039;t figure out how to refresh the photo index after filtering the pictures; if anyone knows how to do that, let me know!]]></description>
		<content:encoded><![CDATA[<p>I can't get it to work with Quicksand, sadly, since I can't figure out how to refresh the photo index after filtering the pictures; if anyone knows how to do that, let me know!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nik</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-77646</link>
		<dc:creator>Nik</dc:creator>
		<pubDate>Sat, 26 Jan 2013 09:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-77646</guid>
		<description><![CDATA[Thanx very much for superb plugin!
I have a question: 
- How can show photo&#039;s title (description) when it show?]]></description>
		<content:encoded><![CDATA[<p>Thanx very much for superb plugin!<br />
I have a question:<br />
- How can show photo's title (description) when it show?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Day</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-77599</link>
		<dc:creator>Matt Day</dc:creator>
		<pubDate>Thu, 24 Jan 2013 12:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-77599</guid>
		<description><![CDATA[Some notes for people wanting to use this on their sites:

1. Problem with multiple galleries:
To reproduce the problem, change example-multiple-galleries.html so that the second gallery has the data-gallery=&quot;two&quot; attribute in the parent div and not in each element. To fix the problem, change the block of code after line 118 to:
items = $closestGallery.find(items);

2. jQuery noConflict:
If you use noConflict (e.g. a WordPress site), do not change all the $ in the script, simply change the first line from (function(){ to (function($){

3. Future development and maintenance:
There is so much interest in this excellent plugin - I hope we can get a repository set up, so things can be fixed and added only once, not by many developers independently. Hope to hear from Martin in this respect.

4. WordPress plugin:
I have developed a simple gallery plugin to add pagination and use TouchTouch for display. I will post details when a beta is available here.

Thanks,
Matt]]></description>
		<content:encoded><![CDATA[<p>Some notes for people wanting to use this on their sites:</p>
<p>1. Problem with multiple galleries:<br />
To reproduce the problem, change example-multiple-galleries.html so that the second gallery has the data-gallery=&quot;two&quot; attribute in the parent div and not in each element. To fix the problem, change the block of code after line 118 to:<br />
items = $closestGallery.find(items);</p>
<p>2. jQuery noConflict:<br />
If you use noConflict (e.g. a WordPress site), do not change all the $ in the script, simply change the first line from (function(){ to (function($){</p>
<p>3. Future development and maintenance:<br />
There is so much interest in this excellent plugin - I hope we can get a repository set up, so things can be fixed and added only once, not by many developers independently. Hope to hear from Martin in this respect.</p>
<p>4. WordPress plugin:<br />
I have developed a simple gallery plugin to add pagination and use TouchTouch for display. I will post details when a beta is available here.</p>
<p>Thanks,<br />
Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LAOMUSIC ARTS</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-77438</link>
		<dc:creator>LAOMUSIC ARTS</dc:creator>
		<pubDate>Wed, 16 Jan 2013 09:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-77438</guid>
		<description><![CDATA[Thanks for the tut buddy!
This doesn&#039;t work inside jQuery Mobile though.
Any suggestions?

Thanks for any help !]]></description>
		<content:encoded><![CDATA[<p>Thanks for the tut buddy!<br />
This doesn't work inside jQuery Mobile though.<br />
Any suggestions?</p>
<p>Thanks for any help !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://tutorialzine.com/2012/04/mobile-touch-gallery/#comment-76853</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 20 Dec 2012 18:45:07 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1966#comment-76853</guid>
		<description><![CDATA[Is there a way this code can be altered so it will attach itself with content loaded via ajax? I&#039;m using this gallery on a Drupal installation (which has some built in ajax in views), everything works great until the content is loaded with ajax, the gallery fails to work. Am I looking at this the correct way?
Thanks,
James]]></description>
		<content:encoded><![CDATA[<p>Is there a way this code can be altered so it will attach itself with content loaded via ajax? I'm using this gallery on a Drupal installation (which has some built in ajax in views), everything works great until the content is loaded with ajax, the gallery fails to work. Am I looking at this the correct way?<br />
Thanks,<br />
James</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 280/282 objects using apc
Content Delivery Network via cdn.tutorialzine.com

 Served from: tutorialzine.com @ 2013-06-19 03:11:59 by W3 Total Cache -->