<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://docs.joomla.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://docs.joomla.org/index.php?title=Talk:Adding_Javascript_moo.fx_to_your_component&amp;feed=atom&amp;action=history</id>
		<title>Talk:Adding Javascript moo.fx to your component - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://docs.joomla.org/index.php?title=Talk:Adding_Javascript_moo.fx_to_your_component&amp;feed=atom&amp;action=history"/>
		<link rel="alternate" type="text/html" href="http://docs.joomla.org/index.php?title=Talk:Adding_Javascript_moo.fx_to_your_component&amp;action=history"/>
		<updated>2013-05-22T08:13:11Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.19.3</generator>

	<entry>
		<id>http://docs.joomla.org/index.php?title=Talk:Adding_Javascript_moo.fx_to_your_component&amp;diff=35042&amp;oldid=prev</id>
		<title>Mvangeest: Talk:Adding Javascript moo.fx to your component WIP moved to Talk:Adding Javascript moo.fx to your component: Removing the WIP suffix: the page state should be in the page text itself</title>
		<link rel="alternate" type="text/html" href="http://docs.joomla.org/index.php?title=Talk:Adding_Javascript_moo.fx_to_your_component&amp;diff=35042&amp;oldid=prev"/>
				<updated>2011-01-15T17:08:40Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/Talk:Adding_Javascript_moo.fx_to_your_component_WIP&quot; class=&quot;mw-redirect&quot; title=&quot;Talk:Adding Javascript moo.fx to your component WIP&quot;&gt;Talk:Adding Javascript moo.fx to your component WIP&lt;/a&gt; moved to &lt;a href=&quot;/Talk:Adding_Javascript_moo.fx_to_your_component&quot; title=&quot;Talk:Adding Javascript moo.fx to your component&quot;&gt;Talk:Adding Javascript moo.fx to your component&lt;/a&gt;: Removing the WIP suffix: the page state should be in the page text itself&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 17:08, 15 January 2011&lt;/td&gt;
			&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Mvangeest</name></author>	</entry>

	<entry>
		<id>http://docs.joomla.org/index.php?title=Talk:Adding_Javascript_moo.fx_to_your_component&amp;diff=34644&amp;oldid=prev</id>
		<title>Mvangeest: Tutorial talk:Adding Javascript moo.fx to your component WIP moved to Talk:Adding Javascript moo.fx to your component WIP: Moved page to main namespace because the Tutorial namespace is deprecated</title>
		<link rel="alternate" type="text/html" href="http://docs.joomla.org/index.php?title=Talk:Adding_Javascript_moo.fx_to_your_component&amp;diff=34644&amp;oldid=prev"/>
				<updated>2011-01-14T15:37:27Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/index.php?title=Tutorial_talk:Adding_Javascript_moo.fx_to_your_component_WIP&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Tutorial talk:Adding Javascript moo.fx to your component WIP (page does not exist)&quot;&gt;Tutorial talk:Adding Javascript moo.fx to your component WIP&lt;/a&gt; moved to &lt;a href=&quot;/Talk:Adding_Javascript_moo.fx_to_your_component_WIP&quot; class=&quot;mw-redirect&quot; title=&quot;Talk:Adding Javascript moo.fx to your component WIP&quot;&gt;Talk:Adding Javascript moo.fx to your component WIP&lt;/a&gt;: Moved page to main namespace because the Tutorial namespace is deprecated&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 15:37, 14 January 2011&lt;/td&gt;
			&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Mvangeest</name></author>	</entry>

	<entry>
		<id>http://docs.joomla.org/index.php?title=Talk:Adding_Javascript_moo.fx_to_your_component&amp;diff=10948&amp;oldid=prev</id>
		<title>Rlfielding: Code change to fix &quot;undeclared method&quot; error</title>
		<link rel="alternate" type="text/html" href="http://docs.joomla.org/index.php?title=Talk:Adding_Javascript_moo.fx_to_your_component&amp;diff=10948&amp;oldid=prev"/>
				<updated>2008-10-01T04:03:23Z</updated>
		
		<summary type="html">&lt;p&gt;Code change to fix &amp;quot;undeclared method&amp;quot; error&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;I received an error (&amp;quot;Call to undefined method JSite::getDocument()&amp;quot;) when I tried the tutorial.  To fix it, I changed the code from:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
// make mainframe variable available&lt;br /&gt;
global $mainframe;	&lt;br /&gt;
&lt;br /&gt;
// Load the moo.fx scripts&lt;br /&gt;
$document = &amp;amp; $mainframe-&amp;gt;getDocument();&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to this:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
// Load the moo.fx scripts&lt;br /&gt;
$document = &amp;amp; JFactory::getDocument();&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Rlfielding|Rlfielding]] 00:03, 1 October 2008 (EDT)&lt;/div&gt;</summary>
		<author><name>Rlfielding</name></author>	</entry>

	</feed>