diff options
Diffstat (limited to 'tests/unit/resizable/options.js')
-rw-r--r-- | tests/unit/resizable/options.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit/resizable/options.js b/tests/unit/resizable/options.js index 3adef0da5..50b30ce7f 100644 --- a/tests/unit/resizable/options.js +++ b/tests/unit/resizable/options.js @@ -129,7 +129,7 @@ QUnit.test( "aspectRatio: 'preserve' (ne)", function( assert ) { QUnit.test( "aspectRatio: Resizing can move objects", function( assert ) { assert.expect( 7 ); - // Http://bugs.jqueryui.com/ticket/7018 - Resizing can move objects + // https://bugs.jqueryui.com/ticket/7018 - Resizing can move objects var handleW = ".ui-resizable-w", handleNW = ".ui-resizable-nw", target = $( "#resizable1" ).resizable( { @@ -146,7 +146,7 @@ QUnit.test( "aspectRatio: Resizing can move objects", function( assert ) { assert.equal( target.height(), 100, "compare height - no size change" ); assert.equal( target.position().left, 75, "compare left - no movement" ); - // Http://bugs.jqueryui.com/ticket/9107 - aspectRatio and containment not handled correctly + // https://bugs.jqueryui.com/ticket/9107 - aspectRatio and containment not handled correctly $( "#container" ).css( { width: 200, height: 300, position: "absolute", left: 100, top: 100 } ); $( "#resizable1" ).css( { width: 100, height: 100, left: 0, top: 0 } ); @@ -198,7 +198,7 @@ QUnit.test( "containment", function( assert ) { QUnit.test( "containment - not immediate parent", function( assert ) { assert.expect( 4 ); - // Http://bugs.jqueryui.com/ticket/7485 - Resizable: Containment calculation is wrong + // https://bugs.jqueryui.com/ticket/7485 - Resizable: Containment calculation is wrong // when containment element is not the immediate parent var element = $( "#child" ).resizable( { containment: "#container2", @@ -230,7 +230,7 @@ QUnit.test( "containment - not immediate parent", function( assert ) { QUnit.test( "containment - immediate parent", function( assert ) { assert.expect( 4 ); - // Http://bugs.jqueryui.com/ticket/10140 - Resizable: Width calculation is wrong when containment element is "position: relative" + // https://bugs.jqueryui.com/ticket/10140 - Resizable: Width calculation is wrong when containment element is "position: relative" // when containment element is immediate parent var element = $( "#child" ).resizable( { containment: "parent", @@ -327,7 +327,7 @@ QUnit.test( "grid - Resizable: can be moved when grid option is set (#9611)", fu QUnit.test( "grid - maintains grid with padding and border when approaching no dimensions", function( assert ) { assert.expect( 2 ); - // Http://bugs.jqueryui.com/ticket/10437 - Resizable: border with grid option working wrong + // https://bugs.jqueryui.com/ticket/10437 - Resizable: border with grid option working wrong var handle = ".ui-resizable-nw", target = $( "#resizable1" ).css( { padding: 5, |