Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Merge pull request #5320 from @ljharb after rebasing onto master
Browse files Browse the repository at this point in the history
Merge branch 'ljharb-global_pollution_fix'
  • Loading branch information
Gabriel Schulhof committed Nov 26, 2012
2 parents b982e2f + 5534fbc commit 9f7cbfc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/jquery.testHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@
versionTest: function( l, t, r ) {
var lAr = l.split( "." ), lLength = lAr.length,
rAr = r.split( "." ), rLength = rAr.length,
lVal, rVal, lRes = "", rRes = "", min, max, str, idx1, diff;
lVal, rVal, lRes = "", rRes = "", min, max, str, idx, idx1, diff;
for ( idx = 0 ; idx < lLength || idx < rLength ; idx++ ) {
str = {};
lVal = ( idx < lLength ? parseInt( lAr[ idx ] ) : 0 );
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/event/event_core.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@

asyncTest( "stopImmediatePropagation() prevents tap propagation and execution of 2nd handler", function(){
var tap = 0,
$cf = $( "#qunit-fixture" );
$cf = $( "#qunit-fixture" ),
$doc = $( document ),
docTapCB = function(){
ok(false, "tap should NOT be triggered on document");
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/listview/listview_core.js
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@

module( "Programmatically generated list items", {
setup: function(){
var item,
var label, item,
data = [
{
id: 1,
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/navigation/sequence-tests/sequence_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@
});

asyncTest( "Opening another page after returning from a popup works", function() {
var eventNs = ".openingAnotherPageAfterPopup";
var origActive, eventNs = ".openingAnotherPageAfterPopup";

expect( 7 );

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/select/select_core.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
};

// Check if two chunks of DOM are identical
domEqual = function( l, r ) {
var domEqual = function( l, r ) {
var idx, idxAttr, lattr, rattr;

// If the lengths of the two jQuery objects are different, the DOM
Expand Down

0 comments on commit 9f7cbfc

Please sign in to comment.