@@ -251,7 +251,7 @@ function jqLiteClone(element) {
251251 return element . cloneNode ( true ) ;
252252}
253253
254- function jqLiteDealoc ( element , onlyDescendants ) {
254+ function jqLiteDealoc ( element , onlyDescendants ) {
255255 if ( ! onlyDescendants ) jqLiteRemoveData ( element ) ;
256256
257257 if ( element . querySelectorAll ) {
@@ -493,7 +493,7 @@ var JQLitePrototype = JQLite.prototype = {
493493 } ,
494494 toString : function ( ) {
495495 var value = [ ] ;
496- forEach ( this , function ( e ) { value . push ( '' + e ) ; } ) ;
496+ forEach ( this , function ( e ) { value . push ( '' + e ) ; } ) ;
497497 return '[' + value . join ( ', ' ) + ']' ;
498498 } ,
499499
@@ -584,7 +584,7 @@ forEach({
584584 }
585585 } ,
586586
587- attr : function ( element , name , value ) {
587+ attr : function ( element , name , value ) {
588588 var lowercasedName = lowercase ( name ) ;
589589 if ( BOOLEAN_ATTR [ lowercasedName ] ) {
590590 if ( isDefined ( value ) ) {
@@ -658,7 +658,7 @@ forEach({
658658 } ,
659659
660660 empty : jqLiteEmpty
661- } , function ( fn , name ) {
661+ } , function ( fn , name ) {
662662 /**
663663 * Properties: writes return selection, reads return first value
664664 */
@@ -766,7 +766,7 @@ function createEventHandler(element, events) {
766766forEach ( {
767767 removeData : jqLiteRemoveData ,
768768
769- on : function jqLiteOn ( element , type , fn , unsupported ) {
769+ on : function jqLiteOn ( element , type , fn , unsupported ) {
770770 if ( isDefined ( unsupported ) ) throw jqLiteMinErr ( 'onargs' , 'jqLite#on() does not support the `selector` or `eventData` parameters' ) ;
771771
772772 // Do not add event handlers to non-elements because they will not be cleaned up.
@@ -836,7 +836,7 @@ forEach({
836836 replaceWith : function ( element , replaceNode ) {
837837 var index , parent = element . parentNode ;
838838 jqLiteDealoc ( element ) ;
839- forEach ( new JQLite ( replaceNode ) , function ( node ) {
839+ forEach ( new JQLite ( replaceNode ) , function ( node ) {
840840 if ( index ) {
841841 parent . insertBefore ( node , index . nextSibling ) ;
842842 } else {
@@ -848,7 +848,7 @@ forEach({
848848
849849 children : function ( element ) {
850850 var children = [ ] ;
851- forEach ( element . childNodes , function ( element ) {
851+ forEach ( element . childNodes , function ( element ) {
852852 if ( element . nodeType === NODE_TYPE_ELEMENT )
853853 children . push ( element ) ;
854854 } ) ;
@@ -874,7 +874,7 @@ forEach({
874874 prepend : function ( element , node ) {
875875 if ( element . nodeType === NODE_TYPE_ELEMENT ) {
876876 var index = element . firstChild ;
877- forEach ( new JQLite ( node ) , function ( child ) {
877+ forEach ( new JQLite ( node ) , function ( child ) {
878878 element . insertBefore ( child , index ) ;
879879 } ) ;
880880 }
@@ -911,7 +911,7 @@ forEach({
911911
912912 toggleClass : function ( element , selector , condition ) {
913913 if ( selector ) {
914- forEach ( selector . split ( ' ' ) , function ( className ) {
914+ forEach ( selector . split ( ' ' ) , function ( className ) {
915915 var classCondition = condition ;
916916 if ( isUndefined ( classCondition ) ) {
917917 classCondition = ! jqLiteHasClass ( element , className ) ;
@@ -976,7 +976,7 @@ forEach({
976976 } ) ;
977977 }
978978 }
979- } , function ( fn , name ) {
979+ } , function ( fn , name ) {
980980 /**
981981 * chaining functions
982982 */
0 commit comments