diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-04-26 16:25:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-26 16:25:34 +0200 |
commit | 4966aea381403ce368c17bcf4b2ecd836c82487d (patch) | |
tree | f22c8c76026832b9834dfc51f3d46be3d1831b22 /tests/unit/draggable/options.js | |
parent | 28895912d7eed6862a062be7b8c51fad021e51cf (diff) | |
download | jquery-ui-4966aea381403ce368c17bcf4b2ecd836c82487d.tar.gz jquery-ui-4966aea381403ce368c17bcf4b2ecd836c82487d.zip |
Docs: Change a few most common domains from HTTP to HTTPS
Also, update a few stale URLs to what they redirect now to.
Closes gh-2244
Diffstat (limited to 'tests/unit/draggable/options.js')
-rw-r--r-- | tests/unit/draggable/options.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/unit/draggable/options.js b/tests/unit/draggable/options.js index 40a36ba67..10f279037 100644 --- a/tests/unit/draggable/options.js +++ b/tests/unit/draggable/options.js @@ -280,7 +280,7 @@ QUnit.test( "connectToSortable, dragging out of a sortable", function( assert ) $( element ).one( "dragstop", function( event, ui ) { - // http://bugs.jqueryui.com/ticket/8809 + // https://bugs.jqueryui.com/ticket/8809 // Position issue when connected to sortable result = ui.helper.offset(); @@ -324,7 +324,7 @@ QUnit.test( "connectToSortable, dragging clone into sortable", function( assert $( sortable ).one( "sort", function( event, ui ) { offsetPlaceholder = ui.placeholder.offset(); - // http://bugs.jqueryui.com/ticket/8809 + // https://bugs.jqueryui.com/ticket/8809 // Position issue when connected to sortable assert.deepEqual( ui.helper.offset(), offsetSortable, "sortable offset is correct" ); assert.notDeepEqual( ui.helper.offset(), offsetPlaceholder, "offset not equal to placeholder" ); @@ -332,7 +332,7 @@ QUnit.test( "connectToSortable, dragging clone into sortable", function( assert $( sortable ).one( "sortstop", function( event, ui ) { - // http://bugs.jqueryui.com/ticket/9675 + // https://bugs.jqueryui.com/ticket/9675 // Animation issue with revert and connectToSortable assert.deepEqual( ui.item.offset(), offsetPlaceholder, "offset eventually equals placeholder" ); ready(); @@ -571,7 +571,7 @@ QUnit.test( "containment, account for border", function( assert ) { "The draggable should be to the right of its parent's right border" ); } ); -// http://bugs.jqueryui.com/ticket/7016 +// https://bugs.jqueryui.com/ticket/7016 // draggable can be pulled out of containment in Chrome and IE8 QUnit.test( "containment, element cant be pulled out of container", function( assert ) { assert.expect( 1 ); @@ -898,7 +898,7 @@ QUnit.test( "helper, default, switching after initialization", function( assert testHelper.shouldMove( assert, element, "helper: original" ); } ); -// http://bugs.jqueryui.com/ticket/9446 +// https://bugs.jqueryui.com/ticket/9446 // Draggable: helper function cannot emulate default behavior QUnit.test( "helper, function returning original element", function( assert ) { assert.expect( 1 ); @@ -1490,7 +1490,7 @@ QUnit.test( "iframeFix", function( assert ) { var divOffset, iframeOffset, div = $( this ).children().not( "iframe" ); - // http://bugs.jqueryui.com/ticket/9671 + // https://bugs.jqueryui.com/ticket/9671 // iframeFix doesn't handle iframes that move assert.equal( div.length, 1, "blocking div added as sibling" ); assert.equal( div.outerWidth(), iframe.outerWidth(), "blocking div is wide enough" ); |