Skip to content
Permalink
Browse files
No ticket: Reduce size by reordering variable declarations. Close gh-…
  • 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.
@@ -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(
@@ -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 ];

0 comments on commit cc19a6b

Please sign in to comment.