Skip to content

Commit ec2398f

Browse files
committed
All: Use HTTPS instead of protocol-relative URLs
1 parent 1e5510b commit ec2398f

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

categories.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<category name="Uncategorized" slug="uncategorized"/>
33
<category name="Effects" slug="effects">
44
<desc><![CDATA[
5-
<p>jQuery UI adds quite a bit of functionality on top of <a href="//api.jquery.com/category/effects/">jQuery's built-in effects</a>. jQuery UI adds support for animating colors and class transitions, as well as providing several additional <a href="/easings/">easings</a>. In addition, a full suite of custom effects are available for use when showing and hiding elements or just to add some visual appeal.</p>
5+
<p>jQuery UI adds quite a bit of functionality on top of <a href="https://api.jquery.com/category/effects/">jQuery's built-in effects</a>. jQuery UI adds support for animating colors and class transitions, as well as providing several additional <a href="/easings/">easings</a>. In addition, a full suite of custom effects are available for use when showing and hiding elements or just to add some visual appeal.</p>
66
]]></desc>
77
</category>
88
<category name="Widgets" slug="widgets">

entries/jQuery.effects.clipToBox.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<title>jQuery.effects.clipToBox()</title>
55
<signature>
66
<argument name="animationProperties" type="Object">
7-
<desc>A set of properties that will eventually be passed to <a href="//api.jquery.com/animate/"><code>.animate()</code></a>. The <code>animationProperties</code> must contain a <code>clip</code> property.</desc>
7+
<desc>A set of properties that will eventually be passed to <a href="https://api.jquery.com/animate/"><code>.animate()</code></a>. The <code>animationProperties</code> must contain a <code>clip</code> property.</desc>
88
</argument>
99
</signature>
1010
<desc>Calculates position and dimensions based on a clip animation.</desc>
1111
<longdesc>
12-
<p>This method is useful for mimicking a clip animation when using a placeholder for effects. Given a clip animation, <code>jQuery.effects.clipToBox()</code> will generate an object containing <code>top</code>, <code>left</code>, <code>width</code>, and <code>height</code> properties which can be passed to <a href="//api.jquery.com/css/"><code>.css()</code></a> or <a href="//api.jquery.com/animate/"><code>.animate()</code></a>. This method is generally used in conjunction with <a href="/jQuery.effects.createPlaceholder/"><code>jQuery.effects.createPlaceholder()</code></a>.</p>
12+
<p>This method is useful for mimicking a clip animation when using a placeholder for effects. Given a clip animation, <code>jQuery.effects.clipToBox()</code> will generate an object containing <code>top</code>, <code>left</code>, <code>width</code>, and <code>height</code> properties which can be passed to <a href="https://api.jquery.com/css/"><code>.css()</code></a> or <a href="https://api.jquery.com/animate/"><code>.animate()</code></a>. This method is generally used in conjunction with <a href="/jQuery.effects.createPlaceholder/"><code>jQuery.effects.createPlaceholder()</code></a>.</p>
1313
</longdesc>
1414
<category slug="effects-core"/>
1515
<category slug="effects"/>

entries/jQuery.widget.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
<p>We can pass as many or as few options as we want during initialization. Any options that we don't pass will just use their default values.</p>
4545

46-
<p>You can pass multiple options arguments. Those arguments will be merged into one object (similar to <a href="//api.jquery.com/jQuery.extend/"><code>$.extend( true, target, object1, objectN )</code></a>). This is useful for sharing options between instances, while overriding some properties for each one:</p>
46+
<p>You can pass multiple options arguments. Those arguments will be merged into one object (similar to <a href="https://api.jquery.com/jQuery.extend/"><code>$.extend( true, target, object1, objectN )</code></a>). This is useful for sharing options between instances, while overriding some properties for each one:</p>
4747

4848
<pre><code>
4949
var options = { modal: true, show: "slow" };
@@ -121,7 +121,7 @@
121121
$( "#not-a-progressbar" ).progressbar( "instance" ); // undefined
122122
</code></pre>
123123

124-
<p>The instance is stored using <a href="//api.jquery.com/jQuery.data/"><code>jQuery.data()</code></a> with the widget's full name as the key. Therefore, the <a href="/data-selector/"><code>:data</code></a> selector can also determine whether an element has a given widget bound to it.</p>
124+
<p>The instance is stored using <a href="https://api.jquery.com/jQuery.data/"><code>jQuery.data()</code></a> with the widget's full name as the key. Therefore, the <a href="/data-selector/"><code>:data</code></a> selector can also determine whether an element has a given widget bound to it.</p>
125125

126126
<pre><code>
127127
$( "#elem" ).is( ":data('ui-progressbar')" ); // true

entries/slider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<added>1.5</added>
3131
<options>
3232
<option name="animate" default="false" example-value='"fast"'>
33-
<desc>Whether to slide the handle smoothly when the user clicks on the slider track. Also accepts any valid <a href="//api.jquery.com/animate/#duration">animation duration</a>.</desc>
33+
<desc>Whether to slide the handle smoothly when the user clicks on the slider track. Also accepts any valid <a href="https://api.jquery.com/animate/#duration">animation duration</a>.</desc>
3434
<type name="Boolean">
3535
<desc>When set to <code>true</code>, the handle will animate with the default duration.</desc>
3636
</type>

entries/tabs.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
<event name="beforeLoad">
183183
<desc>
184184
<p>Triggered when a remote tab is about to be loaded, after the <a href="#event-beforeActivate"><code>beforeActivate</code></a> event. Can be canceled to prevent the tab panel from loading content; though the panel will still be activated. This event is triggered just before the Ajax request is made, so modifications can be made to <code>ui.jqXHR</code> and <code>ui.ajaxSettings</code>.</p>
185-
<p><em>Note: Although <code>ui.ajaxSettings</code> is provided and can be modified, some of these properties have already been processed by jQuery. For example, <a href="//api.jquery.com/jQuery.ajaxPrefilter/">prefilters</a> have been applied, <code>data</code> has been processed, and <code>type</code> has been determined. The <code>beforeLoad</code> event occurs at the same time, and therefore has the same restrictions, as the <code>beforeSend</code> callback from <a href="//api.jquery.com/jQuery.ajax/"><code>jQuery.ajax()</code></a>.</em></p>
185+
<p><em>Note: Although <code>ui.ajaxSettings</code> is provided and can be modified, some of these properties have already been processed by jQuery. For example, <a href="https://api.jquery.com/jQuery.ajaxPrefilter/">prefilters</a> have been applied, <code>data</code> has been processed, and <code>type</code> has been determined. The <code>beforeLoad</code> event occurs at the same time, and therefore has the same restrictions, as the <code>beforeSend</code> callback from <a href="https://api.jquery.com/jQuery.ajax/"><code>jQuery.ajax()</code></a>.</em></p>
186186
</desc>
187187
<argument name="event" type="Event"/>
188188
<argument name="ui" type="Object">
@@ -196,7 +196,7 @@
196196
<desc>The <code>jqXHR</code> object that is requesting the content.</desc>
197197
</property>
198198
<property name="ajaxSettings" type="Object">
199-
<desc>The properties that will be used by <a href="//api.jquery.com/jQuery.ajax/"><code>jQuery.ajax</code></a> to request the content.</desc>
199+
<desc>The properties that will be used by <a href="https://api.jquery.com/jQuery.ajax/"><code>jQuery.ajax</code></a> to request the content.</desc>
200200
</property>
201201
</argument>
202202
</event>

entries2html.xsl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
&lt;head&gt;
1010
&lt;meta charset="utf-8"&gt;
1111
&lt;title&gt;<xsl:value-of select="//entry/@name"/> demo&lt;/title&gt;
12-
&lt;link rel="stylesheet" href="//code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.css"&gt;<xsl:if test="css">
12+
&lt;link rel="stylesheet" href="https://code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.css"&gt;<xsl:if test="css">
1313
&lt;style&gt;<xsl:value-of select="css/text()"/> &lt;/style&gt;</xsl:if>
14-
&lt;script src="//code.jquery.com/jquery-3.7.1.js"&gt;&lt;/script&gt;
15-
&lt;script src="//code.jquery.com/ui/1.13.3/jquery-ui.js"&gt;&lt;/script&gt;
14+
&lt;script src="https://code.jquery.com/jquery-3.7.1.js"&gt;&lt;/script&gt;
15+
&lt;script src="https://code.jquery.com/ui/1.13.3/jquery-ui.js"&gt;&lt;/script&gt;
1616
&lt;/head&gt;
1717
&lt;body&gt;
1818
<xsl:value-of select="html/text()"/>

0 commit comments

Comments
 (0)