Skip to content

Commit

Permalink
Draggable Tests: Fix several whitespace issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesherov committed Aug 12, 2014
1 parent 0ad31ca commit 2ac0769
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions tests/unit/draggable/draggable_core.js
Expand Up @@ -174,7 +174,6 @@ test( "#5009: scroll not working with parent's position fixed", function() {
} }
}); });



TestHelpers.forceScrollableWindow(); TestHelpers.forceScrollableWindow();


$( "#wrapper" ).css( "position", "fixed" ); $( "#wrapper" ).css( "position", "fixed" );
Expand Down Expand Up @@ -221,7 +220,7 @@ test( "#9379: Draggable: position bug in scrollable div", function() {
}); });
}); });


test( "#5727: draggable from iframe" , function() { test( "#5727: draggable from iframe", function() {
expect( 1 ); expect( 1 );


var iframeBody, draggable1, var iframeBody, draggable1,
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/draggable/draggable_test_helpers.js
Expand Up @@ -110,7 +110,7 @@ TestHelpers.draggable = {
el.draggable( "option", "helper", "clone" ); el.draggable( "option", "helper", "clone" );


// Get what parent is at time of drag // Get what parent is at time of drag
el.bind( "drag", function(e,ui) { el.bind( "drag", function(e, ui) {
el.data( "last_dragged_parent", ui.helper.parent()[ 0 ] ); el.data( "last_dragged_parent", ui.helper.parent()[ 0 ] );
}); });
} }
Expand Down

0 comments on commit 2ac0769

Please sign in to comment.