<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.yuiblog.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">
<channel>
	<title>Comments for Yahoo! User Interface Blog</title>
	
	<link>http://www.yuiblog.com/blog</link>
	<description>Comments on News and Articles about Designing and Developing with Yahoo! Libraries.</description>
	<lastBuildDate>Wed, 19 Jun 2013 19:22:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.yuiblog.com/CommentsForYahooUserInterfaceBlog" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="commentsforyahoouserinterfaceblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Comment on 3.11pr1 Released by Marc</title>
		<link>http://www.yuiblog.com/blog/2013/06/19/3-11pr1-released/comment-page-1/#comment-669974</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Wed, 19 Jun 2013 19:22:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2013/06/17/#comment-669974</guid>
		<description><![CDATA[One of the reasons I keep bypassing Calendar is that it doesn&#039;t seem to have a UI element to be able to quicly jump through years in stead of just months.
]]></description>
		<content:encoded><![CDATA[<p>One of the reasons I keep bypassing Calendar is that it doesn&#8217;t seem to have a UI element to be able to quicly jump through years in stead of just months.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows 8 Learnings by Tilo</title>
		<link>http://www.yuiblog.com/blog/2012/11/02/windows-8-learnings/comment-page-1/#comment-669900</link>
		<dc:creator>Tilo</dc:creator>
		<pubDate>Fri, 14 Jun 2013 15:02:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2012/11/01/#comment-669900</guid>
		<description><![CDATA[&lt;p&gt;@Sab: Thanks! I have not tested widgets from the YUI Gallery. I know you can set breakpoints in VS2012 to see where your JS is failing, so it would be useful if you could figure out what line the failure is happening at.&lt;/p&gt;

&lt;p&gt;Use the non-minified version of the gallery module to find out. It looks like something inside the instantiation call is causing the error, but I can&#039;t tell what without looking at the Y.Accordian code in more detail.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>@Sab: Thanks! I have not tested widgets from the YUI Gallery. I know you can set breakpoints in VS2012 to see where your JS is failing, so it would be useful if you could figure out what line the failure is happening at.</p>
<p>Use the non-minified version of the gallery module to find out. It looks like something inside the instantiation call is causing the error, but I can&#8217;t tell what without looking at the Y.Accordian code in more detail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows 8 Learnings by Sab</title>
		<link>http://www.yuiblog.com/blog/2012/11/02/windows-8-learnings/comment-page-1/#comment-669899</link>
		<dc:creator>Sab</dc:creator>
		<pubDate>Fri, 14 Jun 2013 14:52:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2012/11/01/#comment-669899</guid>
		<description><![CDATA[Hello,

First of all, thank you for the article, I find it very useful.

Second of all, I have a question about the integration of widgets from the yui gallery in a native W8 html5 app.

I have build a html5 application in visual studio 2012 for web and I am trying to transform it as a native windows 8, making it run on visual studio 2012 for windows 8. 
While the widgets from the standard modules are working perfectly, when I use the widgets from the gallery modules (paginator, accordion...) I have a JS exception &quot;The object doesn&#039;t support this action&quot;. 
The debugger shows that in the following example Y.Accordion is undefined:
YUI({ gallery: &#039;gallery-2013.01.16-21-05&#039; }).use(&#039;gallery-accordion&#039;, function (Y) {
    var accordion;
    var accordion = new Y.Accordion({
        srcNode: &quot;#acc1&quot;,
        useAnimation: true,
        collapseOthersOnExpand: true
    });
    accordion.render();
});

Have you tried to use the widgets from the gallery in a native Windows 8 app? Is there something that I should include in the app(besides the gallery modules)?

Thanks,
Sab
]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>First of all, thank you for the article, I find it very useful.</p>
<p>Second of all, I have a question about the integration of widgets from the yui gallery in a native W8 html5 app.</p>
<p>I have build a html5 application in visual studio 2012 for web and I am trying to transform it as a native windows 8, making it run on visual studio 2012 for windows 8.<br />
While the widgets from the standard modules are working perfectly, when I use the widgets from the gallery modules (paginator, accordion&#8230;) I have a JS exception &#8220;The object doesn&#8217;t support this action&#8221;.<br />
The debugger shows that in the following example Y.Accordion is undefined:<br />
YUI({ gallery: &#8216;gallery-2013.01.16-21-05&#8242; }).use(&#8216;gallery-accordion&#8217;, function (Y) {<br />
    var accordion;<br />
    var accordion = new Y.Accordion({<br />
        srcNode: &#8220;#acc1&#8243;,<br />
        useAnimation: true,<br />
        collapseOthersOnExpand: true<br />
    });<br />
    accordion.render();<br />
});</p>
<p>Have you tried to use the widgets from the gallery in a native Windows 8 app? Is there something that I should include in the app(besides the gallery modules)?</p>
<p>Thanks,<br />
Sab</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on YUI Compressor has a new owner by Joey Smith</title>
		<link>http://www.yuiblog.com/blog/2013/01/24/yui-compressor-has-a-new-owner/comment-page-1/#comment-669879</link>
		<dc:creator>Joey Smith</dc:creator>
		<pubDate>Thu, 13 Jun 2013 19:51:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2013/01/24/#comment-669879</guid>
		<description><![CDATA[@laranicolas - please try upgrading to YUICompressor 2.4.8; see http://www.yuiblog.com/blog/2013/05/16/yuicompressor-2-4-8-released/
]]></description>
		<content:encoded><![CDATA[<p>@laranicolas &#8211; please try upgrading to YUICompressor 2.4.8; see <a href="http://www.yuiblog.com/blog/2013/05/16/yuicompressor-2-4-8-released/" rel="nofollow">http://www.yuiblog.com/blog/2013/05/16/yuicompressor-2-4-8-released/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pure 0.2.0 Released by eric</title>
		<link>http://www.yuiblog.com/blog/2013/06/12/pure-0-2-0/comment-page-1/#comment-669861</link>
		<dc:creator>eric</dc:creator>
		<pubDate>Thu, 13 Jun 2013 08:52:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2013/06/12/#comment-669861</guid>
		<description><![CDATA[nice to see you guys mean business
]]></description>
		<content:encoded><![CDATA[<p>nice to see you guys mean business</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on YUI Weekly for June 7th, 2013 by Matt Parker</title>
		<link>http://www.yuiblog.com/blog/2013/06/07/yui-weekly-for-june-7th-2013/comment-page-1/#comment-669668</link>
		<dc:creator>Matt Parker</dc:creator>
		<pubDate>Sat, 08 Jun 2013 16:04:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2013/06/07/#comment-669668</guid>
		<description><![CDATA[Any change we could have some brief notes/blog post from the roundtable?  Especially the blue-sky stuff - would be very interested to know the weather forecast!

Thanks

Matt
]]></description>
		<content:encoded><![CDATA[<p>Any change we could have some brief notes/blog post from the roundtable?  Especially the blue-sky stuff &#8211; would be very interested to know the weather forecast!</p>
<p>Thanks</p>
<p>Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on YUI 3.10.3 Released to Fix Reintroduced SWF Vulnerability by Jenny Donnelly</title>
		<link>http://www.yuiblog.com/blog/2013/06/06/yui-3-10-3-released-to-fix-reintroduced-swf-vulnerability/comment-page-1/#comment-669645</link>
		<dc:creator>Jenny Donnelly</dc:creator>
		<pubDate>Fri, 07 Jun 2013 23:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2013/06/05/#comment-669645</guid>
		<description><![CDATA[&lt;p&gt;@John, it should be fixed now. Thanks again for reporting!&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>@John, it should be fixed now. Thanks again for reporting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on YUI 3.10.3 Released to Fix Reintroduced SWF Vulnerability by Andrew Wooldridge</title>
		<link>http://www.yuiblog.com/blog/2013/06/06/yui-3-10-3-released-to-fix-reintroduced-swf-vulnerability/comment-page-1/#comment-669639</link>
		<dc:creator>Andrew Wooldridge</dc:creator>
		<pubDate>Fri, 07 Jun 2013 18:53:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2013/06/05/#comment-669639</guid>
		<description><![CDATA[&lt;p&gt;@John, also note you can replace in-place the io.swf from the zip above http://yuilibrary.com/support/20130515-vulnerability/dropin_patches/io-3102.zip if you need the update asap.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>@John, also note you can replace in-place the io.swf from the zip above <a href="http://yuilibrary.com/support/20130515-vulnerability/dropin_patches/io-3102.zip" rel="nofollow">http://yuilibrary.com/support/20130515-vulnerability/dropin_patches/io-3102.zip</a> if you need the update asap.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on YUI 3.10.3 Released to Fix Reintroduced SWF Vulnerability by Jenny Donnelly</title>
		<link>http://www.yuiblog.com/blog/2013/06/06/yui-3-10-3-released-to-fix-reintroduced-swf-vulnerability/comment-page-1/#comment-669638</link>
		<dc:creator>Jenny Donnelly</dc:creator>
		<pubDate>Fri, 07 Jun 2013 18:49:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2013/06/05/#comment-669638</guid>
		<description><![CDATA[&lt;p&gt;@John, thanks for the report. Investigating now.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>@John, thanks for the report. Investigating now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on YUI 3.10.3 Released to Fix Reintroduced SWF Vulnerability by John Geffe</title>
		<link>http://www.yuiblog.com/blog/2013/06/06/yui-3-10-3-released-to-fix-reintroduced-swf-vulnerability/comment-page-1/#comment-669630</link>
		<dc:creator>John Geffe</dc:creator>
		<pubDate>Fri, 07 Jun 2013 14:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2013/06/05/#comment-669630</guid>
		<description><![CDATA[I am having trouble decompressing the yui_10.3.3.zip file download.  I have tried both windows explorer (Windows 7) and 7zip.  Most of the files decompress, but there are other that don&#039;t.
I have checked the MD5 sum and it matches.  Can someone else verify the issue?

Thanks
]]></description>
		<content:encoded><![CDATA[<p>I am having trouble decompressing the yui_10.3.3.zip file download.  I have tried both windows explorer (Windows 7) and 7zip.  Most of the files decompress, but there are other that don&#8217;t.<br />
I have checked the MD5 sum and it matches.  Can someone else verify the issue?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
