Draggable: Test fix regarding static scrolling

No longer checking scroll positions of static scrolls since the fixture is
in an absolute container.

Closes gh-1145
This commit is contained in:
Dave Stein 2013-12-02 19:12:21 -05:00 committed by Mike Sherov
parent f4839f73a7
commit 38c6cf1382

View File

@ -678,7 +678,8 @@ test( "helper, default, switching after initialization", function() {
},
positions = [ "absolute", "fixed", "relative", "static" ],
helpers = [ "original", "clone" ],
scrollPositions = [ "relative", "static", "absolute", "fixed" ];
// static is not an option here since the fixture is in an absolute container
scrollPositions = [ "relative", "absolute", "fixed" ];
for ( m = 0 ; m < helpers.length; m++ ) {
for ( l = 0; l < positions.length; l++ ) {