Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit bccf55b

Browse files
Updated 1.2-stable branch to core 1.8.3
1 parent afd34e3 commit bccf55b

File tree

6 files changed

+129
-96
lines changed

6 files changed

+129
-96
lines changed

docs/about/getting-started.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h2>Getting Started with jQuery Mobile</h2>
3434

3535
<h2>Create a basic page template</h2>
3636
<p>Pop open your favorite text editor, paste in the <a href="../pages/page-anatomy.html" id="" title="page-anatomy">page template</a> below, save and open in a browser. You are now a mobile developer!</p>
37-
<p>Here's what's in the template. In the <code>head</code>, a meta <code>viewport</code> tag sets the screen width to the pixel width of the device and references to jQuery, jQuery Mobile and the mobile theme stylesheet from the CDN add all the styles and scripts. jQuery Mobile 1.2 (1.2.1) works with versions of jQuery core from 1.7.0 to 1.8.2.</p>
37+
<p>Here's what's in the template. In the <code>head</code>, a meta <code>viewport</code> tag sets the screen width to the pixel width of the device and references to jQuery, jQuery Mobile and the mobile theme stylesheet from the CDN add all the styles and scripts. jQuery Mobile 1.2 (1.2.1) works with versions of jQuery core from 1.7.0 to 1.8.3.</p>
3838
<p>In the <code>body</code>, a div with a <code>data-role</code> of <code>page</code> is the wrapper used to delineate a page, and the header bar (<code>data-role="header"</code>) and content region (<code>data-role="content"</code>) are added inside to create a basic page (these are both optional). These <code>data-</code> attributes are HTML5 attributes used throughout jQuery Mobile to transform basic markup into an enhanced and styled widget.</p>
3939

4040
<pre><code>
@@ -44,7 +44,7 @@ <h2>Create a basic page template</h2>
4444
&lt;title&gt;My Page&lt;/title&gt;
4545
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
4646
&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css&quot; /&gt;
47-
&lt;script src=&quot;http://code.jquery.com/jquery-1.8.2.min.js&quot;&gt;&lt;/script&gt;
47+
&lt;script src=&quot;http://code.jquery.com/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;
4848
&lt;script src=&quot;http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js&quot;&gt;&lt;/script&gt;
4949
&lt;/head&gt;
5050
&lt;body&gt;

docs/pages/multipage-template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<title>Multi-page template</title>
88
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css" />
9-
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
9+
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
1010
<script src="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js"></script>
1111
</head>
1212

docs/pages/page-anatomy.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h1>Anatomy of a Page</h1>
3131
<h2>Mobile page structure</h2>
3232

3333
<p>A jQuery Mobile site must start with an HTML5 "doctype" to take full advantage of all of the framework's features. (Older devices with browsers that don't understand HTML5 will safely ignore the 'doctype' and various custom attributes.) </p>
34-
<p>In the "head", references to jQuery, jQuery Mobile and the mobile theme CSS are all required to start things off. jQuery Mobile 1.2 (1.2.1) works with versions of jQuery core from 1.7.0 to 1.8.2. The easiest way to get started is to link to files hosted on the jQuery CDN or for best performance, <a href="http://jquerymobile.com/download-builder/" rel="external">build a custom bundle</a>:</p>
34+
<p>In the "head", references to jQuery, jQuery Mobile and the mobile theme CSS are all required to start things off. jQuery Mobile 1.2 (1.2.1) works with versions of jQuery core from 1.7.0 to 1.8.3. The easiest way to get started is to link to files hosted on the jQuery CDN or for best performance, <a href="http://jquerymobile.com/download-builder/" rel="external">build a custom bundle</a>:</p>
3535

3636
<pre><code>
3737
<strong>&lt;!DOCTYPE html&gt; </strong>
@@ -42,7 +42,7 @@ <h2>Mobile page structure</h2>
4242
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
4343

4444
&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css&quot; /&gt;
45-
&lt;script src=&quot;http://code.jquery.com/jquery-1.8.2.min.js&quot;&gt;&lt;/script&gt;
45+
&lt;script src=&quot;http://code.jquery.com/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;
4646
&lt;script src=&quot;http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js&quot;&gt;&lt;/script&gt;
4747
&lt;/head&gt;
4848

@@ -94,7 +94,7 @@ <h2>Putting it together: Basic single page template</h2>
9494
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
9595

9696
&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css&quot; /&gt;
97-
&lt;script src=&quot;http://code.jquery.com/jquery-1.8.2.min.js&quot;&gt;&lt;/script&gt;
97+
&lt;script src=&quot;http://code.jquery.com/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;
9898
&lt;script src=&quot;http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js&quot;&gt;&lt;/script&gt;
9999
&lt;/head&gt;
100100
&lt;body&gt;

docs/pages/page-template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<title>Single page template</title>
88
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css" />
9-
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
9+
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
1010
<script src="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js"></script>
1111
</head>
1212

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1 id="jqm-logo"><img src="docs/_assets/images/jquery-logo.png" alt="jQuery Mob
2424
</div>
2525

2626

27-
<p class="intro"><strong>Welcome.</strong> jQuery Mobile is the easiest way to build sites and apps that are accessible on all popular smartphone, tablet and desktop devices. For jQuery 1.7.0 to 1.8.2.</p>
27+
<p class="intro"><strong>Welcome.</strong> jQuery Mobile is the easiest way to build sites and apps that are accessible on all popular smartphone, tablet and desktop devices. For jQuery 1.7.0 to 1.8.3.</p>
2828

2929
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f">
3030
<li data-role="list-divider">Overview</li>

0 commit comments

Comments
 (0)