You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by mf...@apache.org on 2011/12/27 23:00:22 UTC

svn commit: r1225025 - /incubator/rave/trunk/rave-portal-resources/src/main/webapp/script/rave.js

Author: mfranklin
Date: Tue Dec 27 22:00:21 2011
New Revision: 1225025

URL: http://svn.apache.org/viewvc?rev=1225025&view=rev
Log:
Fixed reserved word class used as javascript object key causing IE to fail to parse rave.js (Fixes RAVE-398)

Modified:
    incubator/rave/trunk/rave-portal-resources/src/main/webapp/script/rave.js

Modified: incubator/rave/trunk/rave-portal-resources/src/main/webapp/script/rave.js
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-portal-resources/src/main/webapp/script/rave.js?rev=1225025&r1=1225024&r2=1225025&view=diff
==============================================================================
--- incubator/rave/trunk/rave-portal-resources/src/main/webapp/script/rave.js (original)
+++ incubator/rave/trunk/rave-portal-resources/src/main/webapp/script/rave.js Tue Dec 27 22:00:21 2011
@@ -557,7 +557,7 @@ var rave = rave || (function() {
         }
 
         function showInfoMessage(message) {
-            $("<div />", {class:'topbar-message', text:message})
+            $("<div />", {'class':'topbar-message', 'text':message})
                     .hide()
                     .prependTo("body")
                     .slideDown('fast').delay(5000)