Upgrade to ExtJS 3.3.0 - Released 10/06/2010
[extjs.git] / docs / source / DomHelper.html
index cce39c6..9131e52 100644 (file)
@@ -7,12 +7,12 @@
 </head>
 <body  onload="prettyPrint();">
     <pre class="prettyprint lang-js">/*!
- * Ext JS Library 3.2.2
+ * Ext JS Library 3.3.0
  * Copyright(c) 2006-2010 Ext JS, Inc.
  * licensing@extjs.com
  * http://www.extjs.com/license
  */
-/**
+<div id="cls-Ext.DomHelper"></div>/**
  * @class Ext.DomHelper
  * <p>The DomHelper class provides a layer of abstraction from DOM and transparently supports creating
  * elements via DOM or using HTML fragments. It also has the ability to create HTML fragment templates
@@ -296,6 +296,13 @@ Ext.DomHelper = function(){
                     styles = styles.call();
                 }
                 if (typeof styles == "string") {
+                    <div id="prop-Ext.DomHelper-lastIndex"></div>/**
+                     * Since we're using the g flag on the regex, we need to set the lastIndex.
+                     * This automatically happens on some implementations, but not others, see:
+                     * http://stackoverflow.com/questions/2645273/javascript-regular-expression-literal-persists-between-function-calls
+                     * http://blog.stevenlevithan.com/archives/fixing-javascript-regexp
+                     */
+                    cssRe.lastIndex = 0;
                     while ((matches = cssRe.exec(styles))) {
                         el.setStyle(matches[1], matches[2]);
                     }