Skip to content

Commit bf16123

Browse files
committed
Use protocol-relative URLs.
1 parent 864cf07 commit bf16123

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

LICENSE-MIT.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Copyright (c) 2013 jQuery Foundation, http://jquery.org/
22

33
This software consists of voluntary contributions made by many
44
individuals. For exact contribution history, see the revision history
5-
and logs, available at http://github.com/jquery/api.jqueryui.com
5+
and logs, available at https://github.com/jquery/api.jqueryui.com
66

77
Permission is hereby granted, free of charge, to any person obtaining
88
a copy of this software and associated documentation files (the

categories.xml

+1-1
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="http://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="//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.widget.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<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>
4343

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

4646
<pre><code>
4747
var options = { modal: true, show: "slow" };
@@ -107,7 +107,7 @@
107107

108108
<h3>Instance</h3>
109109

110-
<p>The widget's instance is stored using <a href="http://api.jquery.com/jQuery.data/"><code>jQuery.data()</code></a> with the widget's full name as the key. Therefore, you can use the following to retrieve the progressbar widget's instance object from the element.</p>
110+
<p>The widget's 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, you can use the following to retrieve the progressbar widget's instance object from the element.</p>
111111

112112
<pre><code>
113113
$( "#elem" ).data( "ui-progressbar" );

entries/tabs.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
<event name="beforeLoad">
169169
<desc>
170170
<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>
171-
<p><em>Note: Although <code>ui.ajaxSettings</code> is provided and can be modified, some of these settings have already been processed by jQuery. For example, <a href="http://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="http://api.jquery.com/jQuery.ajax/"><code>jQuery.ajax()</code></a>.</em></p>
171+
<p><em>Note: Although <code>ui.ajaxSettings</code> is provided and can be modified, some of these settings 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>
172172
</desc>
173173
<argument name="event" type="Event"/>
174174
<argument name="ui" type="Object">

entries2html.xsl

+4-4
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="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"&gt;<xsl:if test="css">
12+
&lt;link rel="stylesheet" href="//code.jquery.com/ui/1.10.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="http://code.jquery.com/jquery-1.9.1.js"&gt;&lt;/script&gt;
15-
&lt;script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"&gt;&lt;/script&gt;
14+
&lt;script src="//code.jquery.com/jquery-1.9.1.js"&gt;&lt;/script&gt;
15+
&lt;script src="//code.jquery.com/ui/1.10.3/jquery-ui.js"&gt;&lt;/script&gt;
1616
&lt;/head&gt;
1717
&lt;body&gt;
1818
<xsl:value-of select="html/text()"/>
@@ -27,7 +27,7 @@ the method of the same name from jQuery core -->
2727
<xsl:template match="//placeholder[@name = 'core-link']">
2828
<a>
2929
<xsl:attribute name="href">
30-
<xsl:value-of select="concat('http://api.jquery.com/', ancestor::entry/@name)"/>
30+
<xsl:value-of select="concat('//api.jquery.com/', ancestor::entry/@name)"/>
3131
</xsl:attribute>
3232
<code>
3333
<xsl:text>.</xsl:text>

pages/color-animation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
jQuery UI effects core adds the ability to animate color properties using `rgb()`,
1010
`rgba()`, hex values, or even color names such as `"aqua"`. Simply include the
11-
jQuery UI effects core file and [`.animate()`](http://api.jquery.com/animate/)
11+
jQuery UI effects core file and [`.animate()`](//api.jquery.com/animate/)
1212
will gain support for colors.
1313

1414
The following properties are supported:

0 commit comments

Comments
 (0)