[Dojo-checkins] ttrenka - r15241 - dojox/trunk/charting

dojo-checkins-admin at dojotoolkit.org dojo-checkins-admin at dojotoolkit.org
Fri Sep 12 16:14:43 UTC 2008


Author: ttrenka
Date: Fri Sep 12 09:14:25 2008
New Revision: 15241

Modified:
   dojox/trunk/charting/Chart2D.js
Log:
Refs #7638: force a clone of the default theme if none are set.  !strict.

Modified: dojox/trunk/charting/Chart2D.js
==============================================================================
--- dojox/trunk/charting/Chart2D.js	(original)
+++ dojox/trunk/charting/Chart2D.js	Fri Sep 12 09:14:25 2008
@@ -257,7 +257,7 @@
 
 			// set up a theme
 			if(!this.theme){
-				this.theme = new dojox.charting.Theme(dojox.charting._def);
+				this.theme = (new dojox.charting.Theme(dojox.charting._def)).clone();
 			}
 
 			// assign series


More information about the Dojo-checkins mailing list