Skip to content

Commit

Permalink
No ticket: Reduce size by reordering variable declarations. Close gh-…
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisAntaki authored and gibson042 committed Nov 5, 2013
1 parent fb2e0a0 commit cc19a6b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/manipulation.js
Expand Up @@ -76,8 +76,8 @@ function restoreScript( elem ) {

// Mark scripts as having already been evaluated
function setGlobalEval( elems, refElements ) {
var l = elems.length,
i = 0;
var i = 0,
l = elems.length;

for ( ; i < l; i++ ) {
data_priv.set(
Expand Down Expand Up @@ -190,10 +190,10 @@ jQuery.extend({

buildFragment: function( elems, context, scripts, selection ) {
var elem, tmp, tag, wrap, contains, j,
i = 0,
l = elems.length,
fragment = context.createDocumentFragment(),
nodes = [];
nodes = [],
i = 0,
l = elems.length;

for ( ; i < l; i++ ) {
elem = elems[ i ];
Expand Down

0 comments on commit cc19a6b

Please sign in to comment.