Author: lindner
Date: Mon Mar  3 00:01:53 2008
New Revision: 632976

URL: http://svn.apache.org/viewvc?rev=632976&view=rev
Log:
Simplication suggested by Kevin Brown, for SHINDIG-98

Modified:
    incubator/shindig/trunk/features/skins/skins.js

Modified: incubator/shindig/trunk/features/skins/skins.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/skins/skins.js?rev=632976&r1=632975&r2=632976&view=diff
==============================================================================
--- incubator/shindig/trunk/features/skins/skins.js (original)
+++ incubator/shindig/trunk/features/skins/skins.js Mon Mar  3 00:01:53 2008
@@ -61,12 +61,7 @@
      * @member gadgets.skins
      */
     getProperty : function(propertyKey) {
-
-      var property = skinProperties[propertyKey];
-      if (property) {                                        
-        return property;
-      }
-      return "";
+      return skinProperties[propertyKey] || "";
     }
   }
 }();


Reply via email to