Skip to content

Commit 97813f7

Browse files
committed
[fix]: Reorder lines in jqueryUrl helper
1 parent a40bb2e commit 97813f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/helper/jquery.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ window.helper.jqueryUrl = function() {
88

99
var current, url, version,
1010
i = 0,
11-
length = parts.length,
12-
parts = document.location.search.slice( 1 ).split( "&" );
11+
parts = document.location.search.slice( 1 ).split( "&" ),
12+
length = parts.length;
1313

1414
for ( ; i < length; i++ ) {
1515
current = parts[ i ].split( "=" );

0 commit comments

Comments
 (0)