remove trailing spaces
[jquery.git] / src / manipulation.js
index c2c0ff2..c537c70 100644 (file)
@@ -1,8 +1,3 @@
-// exclude the following css properties to add px
-var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
-       // cache defaultView
-       defaultView = document.defaultView || {};
-
 jQuery.fn.extend({
        text: function( text ) {
                if ( typeof text !== "object" && text != null )
@@ -151,13 +146,13 @@ jQuery.fn.extend({
                                for ( var i = 0, l = this.length; i < l; i++ )
                                        callback.call( root(this[i], first), this.length > 1 || i > 0 ?
                                                        fragment.cloneNode(true) : fragment );
-               
+
                        if ( scripts )
                                jQuery.each( scripts, evalScript );
                }
 
                return this;
-               
+
                function root( elem, cur ) {
                        return table && jQuery.nodeName(elem, "table") && jQuery.nodeName(cur, "tr") ?
                                (elem.getElementsByTagName("tbody")[0] ||
@@ -311,7 +306,7 @@ jQuery.extend({
                                // IE completely kills leading whitespace when innerHTML is used
                                if ( !jQuery.support.leadingWhitespace && /^\s/.test( elem ) )
                                        div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
-                               
+
                                elem = jQuery.makeArray( div.childNodes );
                        }
 
@@ -332,7 +327,7 @@ jQuery.extend({
                                        fragment.appendChild( ret[i] );
                                }
                        }
-                       
+
                        return scripts;
                }