Author: psharples
Date: Thu Oct  6 15:24:27 2011
New Revision: 1179663

URL: http://svn.apache.org/viewvc?rev=1179663&view=rev
Log:
Fix for the freeder widget not working correctly in IE 9. See WOOKIE-252.

Modified:
    incubator/wookie/trunk/widgets/freeder/scripts/controller.js

Modified: incubator/wookie/trunk/widgets/freeder/scripts/controller.js
URL: 
http://svn.apache.org/viewvc/incubator/wookie/trunk/widgets/freeder/scripts/controller.js?rev=1179663&r1=1179662&r2=1179663&view=diff
==============================================================================
--- incubator/wookie/trunk/widgets/freeder/scripts/controller.js (original)
+++ incubator/wookie/trunk/widgets/freeder/scripts/controller.js Thu Oct  6 
15:24:27 2011
@@ -68,7 +68,7 @@ var Controller = {
         * Update the story details page for a given story and navigate to it.
         */
        gotoStory:function(key) {
-               item = Controller.items[key];
+               var item = Controller.items[key];
         $("#story-detail-title").text(item.title);
         $("#story-detail-content").empty();
         $("#story-detail-content")


Reply via email to