Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Docs: Change a few most common domains from HTTP to HTTPS
  • Loading branch information
mgol committed Apr 25, 2024
commit a5978f4794a517d410383c2234c389b349bdeb89
2 changes: 1 addition & 1 deletion AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Authors ordered by first contribution
A list of current team members is available at http://jqueryui.com/about
A list of current team members is available at https://jqueryui.com/about

Paul Bakaus <paul.bakaus@gmail.com>
Richard Worth <rdworth@gmail.com>
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Welcome! Thanks for your interest in contributing to jQuery UI. Most of our info

You may also want to take a look at our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla).

You can find us on [IRC](http://irc.jquery.org), specifically in #jqueryui-dev should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/). For other forms of discussion and support, please see the [jQuery UI support center](http://jqueryui.com/support/).
You can find us on [IRC](http://irc.jquery.org), specifically in #jqueryui-dev should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/). For other forms of discussion and support, please see the [jQuery UI support center](https://jqueryui.com/support/).

## Getting Involved

Expand Down Expand Up @@ -85,4 +85,4 @@ npm test

To run the tests for a specific plugin in your browser, open the appropriate file from the `/tests/unit/` directory, for example: `http://localhost/tests/unit/accordion/accordion.html`. The domain will be dependent on your local server configuration; if there is a port, be sure to include it.

Ideally you would test in all of our [supported browsers](http://jqueryui.com/browser-support/), but if you don't have all of these browsers available, that's ok.
Ideally you would test in all of our [supported browsers](https://jqueryui.com/browser-support/), but if you don't have all of these browsers available, that's ok.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ grunt.registerTask( "update-authors", function() {

grunt.file.write( "AUTHORS.txt",
"Authors ordered by first contribution\n" +
"A list of current team members is available at http://jqueryui.com/about\n\n" +
"A list of current team members is available at https://jqueryui.com/about\n\n" +
authors.join( "\n" ) + "\n" );
done();
} );
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# [jQuery UI](http://jqueryui.com/) - Interactions and Widgets for the web
# [jQuery UI](https://jqueryui.com/) - Interactions and Widgets for the web

_**Note:** jQuery UI is in maintenance-only mode. Please read [the project status blog post](https://blog.jqueryui.com/2021/10/jquery-maintainers-update-and-transition-jquery-ui-as-part-of-overall-modernization-efforts/) for more information._

jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of jQuery. Whether you're building highly interactive web applications, or you just need to add a date picker to a form control, jQuery UI is the perfect choice.

If you want to use jQuery UI, go to [jqueryui.com](http://jqueryui.com) to get started, [jqueryui.com/demos/](http://jqueryui.com/demos/) for demos, [api.jqueryui.com](http://api.jqueryui.com/) for API documentation, or the [Using jQuery UI Forum](http://forum.jquery.com/using-jquery-ui) for discussions and questions.
If you want to use jQuery UI, go to [jqueryui.com](https://jqueryui.com) to get started, [jqueryui.com/demos/](https://jqueryui.com/demos/) for demos, [api.jqueryui.com](https://api.jqueryui.com/) for API documentation, or the [Using jQuery UI Forum](http://forum.jquery.com/using-jquery-ui) for discussions and questions.

If you want to report a bug/issue, please visit [the GitHub issues page](https://github.com/jquery/jquery-ui/issues). Archive of older bug reports is kept for historical reasons in read-only mode at [bugs.jqueryui.com](http://bugs.jqueryui.com). If any of them still matters to you, please open a bug about it on GitHub, linking to the legacy [bugs.jqueryui.com](http://bugs.jqueryui.com) issue for context.
If you want to report a bug/issue, please visit [the GitHub issues page](https://github.com/jquery/jquery-ui/issues). Archive of older bug reports is kept for historical reasons in read-only mode at [bugs.jqueryui.com](https://bugs.jqueryui.com). If any of them still matters to you, please open a bug about it on GitHub, linking to the legacy [bugs.jqueryui.com](https://bugs.jqueryui.com) issue for context.

If you are interested in helping develop jQuery UI, you are in the right place.
To discuss development with team members and the community, visit the [Developing jQuery UI Forum](http://forum.jquery.com/developing-jquery-ui) or [#jqueryui-dev on irc.freenode.net](http://irc.jquery.org/).
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "jQuery UI",
"description": "A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.",
"version": "1.13.3-pre",
"homepage": "http://jqueryui.com",
"homepage": "https://jqueryui.com",
"author": {
"name": "OpenJS Foundation and other contributors",
"url": "https://github.com/jquery/jquery-ui/blob/main/AUTHORS.txt"
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/accordion/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ QUnit.test( "{ active: false }", function( assert ) {
assert.strictEqual( element.accordion( "option", "active" ), 0 );
} );

// http://bugs.jqueryui.com/ticket/11938
// https://bugs.jqueryui.com/ticket/11938
QUnit.test( "{ active: false, collapsible: true }", function( assert ) {
assert.expect( 1 );
var element = $( "#collapsible" ).accordion(),
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/dialog/methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ QUnit.test( "open", function( assert ) {
assert.ok( element.dialog( "widget" ).is( ":visible" ) && !element.dialog( "widget" ).is( ":hidden" ), "dialog visible after open method called" );
} );

// http://bugs.jqueryui.com/ticket/6137
// https://bugs.jqueryui.com/ticket/6137
QUnit.test( "Ensure form elements don't reset when opening a dialog", function( assert ) {
assert.expect( 2 );

Expand Down
8 changes: 4 additions & 4 deletions tests/unit/draggable/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ QUnit.test( "#8269: Removing draggable element on drop", function( assert ) {
}
} );

// http://bugs.jqueryui.com/ticket/7778
// https://bugs.jqueryui.com/ticket/7778
// drag element breaks in IE8 when its content is replaced onmousedown
QUnit.test( "Stray mousemove after mousedown still drags", function( assert ) {
assert.expect( 2 );
Expand Down Expand Up @@ -186,11 +186,11 @@ QUnit.test( "scroll offset with fixed ancestors", function( assert ) {
var startValue = 300,
element = $( "#draggable1" )

// http://bugs.jqueryui.com/ticket/5009
// https://bugs.jqueryui.com/ticket/5009
// scroll not working with parent's position fixed
.wrap( "<div id='wrapper' />" )

// http://bugs.jqueryui.com/ticket/9612
// https://bugs.jqueryui.com/ticket/9612
// abspos elements inside of fixed elements moving away from the mouse when scrolling
.wrap( "<div id='wrapper2' />" )
.draggable( {
Expand Down Expand Up @@ -221,7 +221,7 @@ $( [ "hidden", "auto", "scroll" ] ).each( function() {
var overflow = this;

// Http://bugs.jqueryui.com/ticket/9379 - position bug in scrollable div
// http://bugs.jqueryui.com/ticket/10147 - Wrong position in a parent with "overflow: hidden"
// https://bugs.jqueryui.com/ticket/10147 - Wrong position in a parent with "overflow: hidden"
QUnit.test( "position in scrollable parent with overflow: " + overflow, function( assert ) {
assert.expect( 2 );

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/draggable/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ QUnit.test( "stopping the stop callback", function( assert ) {
assert.ok( element.draggable( "instance" ).helper, "the clone should not be deleted if the stop callback is stopped" );
} );

// http://bugs.jqueryui.com/ticket/6884
// https://bugs.jqueryui.com/ticket/6884
// Draggable: ui.offset.left differs between the "start" and "drag" hooks
QUnit.test( "position and offset in hash is consistent between start, drag, and stop", function( assert ) {
assert.expect( 4 );
Expand Down
12 changes: 6 additions & 6 deletions tests/unit/draggable/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -324,15 +324,15 @@ 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" );
} );

$( 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();
Expand Down Expand Up @@ -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 );
Expand Down Expand Up @@ -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 );
Expand Down Expand Up @@ -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" );
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/sortable/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ QUnit.test( "over", function( assert ) {
assert.equal( overCount, 1, "over fires only once" );
} );

// http://bugs.jqueryui.com/ticket/9335
// https://bugs.jqueryui.com/ticket/9335
// Sortable: over & out events does not consistently fire
QUnit.test( "over, fires with draggable connected to sortable", function( assert ) {
assert.expect( 3 );
Expand Down
6 changes: 3 additions & 3 deletions tests/unit/tooltip/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ QUnit.test( "tooltip on .ui-state-disabled element", function( assert ) {
assert.equal( $( ".ui-tooltip" ).length, 0 );
} );

// http://bugs.jqueryui.com/ticket/8740
// https://bugs.jqueryui.com/ticket/8740
QUnit.test( "programmatic focus with async content", function( assert ) {
var ready = assert.async();
assert.expect( 2 );
Expand Down Expand Up @@ -185,7 +185,7 @@ QUnit.test( "destroy during hide animation; only one close event", function( ass
} );
} );

// http://bugs.jqueryui.com/ticket/10602
// https://bugs.jqueryui.com/ticket/10602
QUnit.test( "multiple active delegated tooltips", function( assert ) {
var ready = assert.async();
assert.expect( 1 );
Expand Down Expand Up @@ -234,7 +234,7 @@ QUnit.test( "multiple active delegated tooltips", function( assert ) {
step1();
} );

// http://bugs.jqueryui.com/ticket/11272
// https://bugs.jqueryui.com/ticket/11272
QUnit.test( "remove conflicting attributes from live region", function( assert ) {
assert.expect( 2 );

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/tooltip/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ QUnit.test( "content: sync + async callback", function( assert ) {
} ).tooltip( "open" );
} );

// http://bugs.jqueryui.com/ticket/8740
// https://bugs.jqueryui.com/ticket/8740
QUnit.test( "content: async callback loses focus before load", function( assert ) {
var ready = assert.async();
assert.expect( 1 );
Expand Down
6 changes: 3 additions & 3 deletions themes/base/accordion.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI Accordion @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/accordion/#theming
* https://api.jqueryui.com/accordion/#theming
*/
.ui-accordion .ui-accordion-header {
display: block;
Expand Down
6 changes: 3 additions & 3 deletions themes/base/all.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI CSS Framework @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/category/theming/
* https://api.jqueryui.com/category/theming/
*/
@import "base.css";
@import "theme.css";
6 changes: 3 additions & 3 deletions themes/base/autocomplete.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI Autocomplete @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/autocomplete/#theming
* https://api.jqueryui.com/autocomplete/#theming
*/
.ui-autocomplete {
position: absolute;
Expand Down
6 changes: 3 additions & 3 deletions themes/base/base.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI CSS Framework @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/category/theming/
* https://api.jqueryui.com/category/theming/
*/
@import url("core.css");

Expand Down
6 changes: 3 additions & 3 deletions themes/base/button.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI Button @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/button/#theming
* https://api.jqueryui.com/button/#theming
*/
.ui-button {
padding: .4em 1em;
Expand Down
6 changes: 3 additions & 3 deletions themes/base/checkboxradio.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI Checkboxradio @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/checkboxradio/#theming
* https://api.jqueryui.com/checkboxradio/#theming
*/

.ui-checkboxradio-label .ui-icon-background {
Expand Down
6 changes: 3 additions & 3 deletions themes/base/controlgroup.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI Controlgroup @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/controlgroup/#theming
* https://api.jqueryui.com/controlgroup/#theming
*/

.ui-controlgroup {
Expand Down
6 changes: 3 additions & 3 deletions themes/base/core.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI CSS Framework @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/category/theming/
* https://api.jqueryui.com/category/theming/
*/

/* Layout helpers
Expand Down
6 changes: 3 additions & 3 deletions themes/base/datepicker.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI Datepicker @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/datepicker/#theming
* https://api.jqueryui.com/datepicker/#theming
*/
.ui-datepicker {
width: 17em;
Expand Down
6 changes: 3 additions & 3 deletions themes/base/dialog.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* jQuery UI Dialog @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/dialog/#theming
* https://api.jqueryui.com/dialog/#theming
*/
.ui-dialog {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions themes/base/draggable.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* jQuery UI Draggable @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/
.ui-draggable-handle {
-ms-touch-action: none;
Expand Down
Loading