Skip to content

Commit b27c401

Browse files
committed
Merge remote branch 'upstream/master' into beta-pre
Conflicts: js/jquery.mobile.navigation.js
2 parents e040eba + fe7ba3f commit b27c401

File tree

164 files changed

+972
-731
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+972
-731
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ combined/
88
combine/
99
compiled/
1010
gitstatus.log
11+
refreshCDN

Makefile

100755100644
Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ DATE = $(shell date "+%Y%m%d")
33

44
# The version according to the source file. If this is the nightly build, use a different version
55
VER = $(shell cat version.txt)
6-
nightly: VER = nightly
76

87
# The command to replace the @VERSION in the files with the actual version
9-
SED_VER = sed "s/@VERSION/${VER}/"
10-
nightly: SED_VER = sed "s/@VERSION/Nightly-${DATE}/"
8+
SED_VER = sed "s/@VERSION/$(shell git log -1 --format=format:" Git Build\n * Git Info SHA1: %H Date: %cd")/"
9+
deploy: SED_VER = sed "s/@VERSION/${VER}/"
1110

1211
# The version of jQuery core used
1312
JQUERY = $(shell grep Library js/jquery.js | sed s'/ \* jQuery JavaScript Library v//')
@@ -26,7 +25,6 @@ NIGHTLY_OUTPUT = nightlies/${DATE}
2625
ifeq (${NIGHTLY_OUTPUT}, latest)
2726
RMLATEST = ssh [email protected] 'rm -rf /var/www/html/code.jquery.com/mobile/latest'
2827
DIR = jquery.mobile
29-
SED_VER = sed "s/@VERSION/ LatestBuild/"
3028
endif
3129
NIGHTLY_WEBPATH = http://code.jquery.com/mobile/${NIGHTLY_OUTPUT}
3230

@@ -89,21 +87,30 @@ all: init js min css cssmin notify
8987

9088
# Build the normal CSS file.
9189
css: init
90+
# Build the CSS file
9291
@@head -8 js/jquery.mobile.core.js | ${SED_VER} > ${OUTPUT}/${CSS}
9392
@@cat ${CSSFILES} >> ${OUTPUT}/${CSS}
9493

9594
# Build the minified CSS file
9695
cssmin: init css
97-
@@head -8 js/jquery.mobile.core.js | ${SED_VER} > ${OUTPUT}/${CSSMIN}
96+
# Build the minified CSS file
9897
@@java -jar build/yuicompressor-2.4.4.jar --type css ${OUTPUT}/${CSS} >> ${OUTPUT}/${CSSMIN}
9998

10099
# Build the normal JS file
101100
js: init
101+
# Build the JavaScript file
102102
@@head -8 js/jquery.mobile.core.js | ${SED_VER} > ${OUTPUT}/${JS}
103103
@@cat ${JSFILES} >> ${OUTPUT}/${JS}
104104

105+
# Create the output directory. This is in a separate step so its not dependant on other targets
106+
init:
107+
# Building jQuery Mobile in the "${OUTPUT}" folder
108+
@@rm -rf ${OUTPUT}
109+
@@mkdir ${OUTPUT}
110+
105111
# Build the minified JS file
106112
min: init js
113+
# Build the minified Javascript file
107114
@@head -8 js/jquery.mobile.core.js | ${SED_VER} > ${OUTPUT}/${MIN}
108115
@@java -jar build/google-compiler-20110405.jar --js ${OUTPUT}/${JS} --warning_level QUIET --js_output_file ${MIN}.tmp
109116
@@cat ${MIN}.tmp >> ${OUTPUT}/${MIN}
@@ -113,18 +120,12 @@ min: init js
113120
notify:
114121
@@echo "The files have been built and are in " $$(pwd)/${OUTPUT}
115122

116-
# Create the output directory. This is in a separate step so its not dependant on other targets
117-
init:
118-
@@rm -rf ${OUTPUT}
119-
@@mkdir ${OUTPUT}
120-
121123
# Pull the latest commits. This is used for the nightly build but can be used to save some keystrokes
122124
pull:
123125
@@git pull --quiet
124126

125127
# Zip the 4 files and the theme images into one convenient package
126128
zip: init js min css cssmin
127-
@@rm -rf ${DIR}
128129
@@mkdir -p ${DIR}
129130
@@cp ${OUTPUT}/${DIR}*.js ${DIR}/
130131
@@cp ${OUTPUT}/${DIR}*.css ${DIR}/
@@ -139,7 +140,7 @@ nightly: pull zip
139140
@@echo $$"\nGit Release Version: " >> ${OUTPUT}/log.txt
140141
@@cat version.txt >> ${OUTPUT}/log.txt
141142
@@echo $$"\nGit Information for this build:" >> ${OUTPUT}/log.txt
142-
@@git log -1 --format=format:"SHA1: %H %nDate: %cd %nTitle: %s" >> ${OUTPUT}/log.txt
143+
@@git log -1 --format=format:"SHA1: %H \nDate: %cd \nTitle: %s" >> ${OUTPUT}/log.txt
143144

144145
# Create the folder to hold the files for the demos
145146
@@mkdir -p ${VER}
@@ -176,12 +177,11 @@ nightly: pull zip
176177
# Used by the jQuery team to deploy a build to the CDN
177178
deploy: zip
178179
# Deploy to CDN
179-
@@mv ${DIR} ${VER}
180-
@@cp ${DIR}.zip ${VER}/
180+
@@mv ${OUTPUT} ${VER}
181181
@@scp -r ${VER} [email protected]:/var/www/html/code.jquery.com/mobile/
182-
@@mv ${VER} ${DIR}
182+
@@mv ${VER} ${OUTPUT}
183183

184-
# Deploy Demos
184+
# Deploy Demos to the jQueryMobile.com site
185185
@@mkdir -p ${VER}
186186
@@cp -r index.html themes experiments docs ${VER}/
187187

@@ -199,3 +199,7 @@ deploy: zip
199199
@@find ${VER} -type f -name '*.html' -exec sed -i "" -e 's|src="js/"|src="http://code.jquery.com/mobile/${VER}/${DIR}.min.js"|g' {} \;
200200

201201
@@scp -r ${VER} [email protected]:/srv/jquerymobile.com/htdocs/demos/
202+
203+
# Clean up the local files
204+
@@rm -rf ${VER}
205+
@@echo "All Done"

docs/about/accessibility.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Accessibility</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/about/features.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Features</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/about/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery UI Mobile Framework - About</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/about/intro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Intro</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/about/platforms.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Supported platforms</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
@@ -38,7 +38,7 @@ <h2>Target platform additions for beta</h2>
3838

3939
<p>Since jQuery Mobile is built on the jQuery core, all pages should also work great on most recent versions of desktop browsers too - Firefox, Chrome, Safari, Internet Explorer, Opera, etc.</p>
4040

41-
<p>For more information about browser support, view the <a href="https://github.com/jquery/jquery-mobile/wiki/Current-development-status-">current browser support status and known issues</a> and the project's target <a href="http://jquerymobile.com/gbs/" rel="external"><strong>graded browser matrix</strong>.</p>
41+
<p>For more information about browser support, view the <a href="https://github.com/jquery/jquery-mobile/wiki/Current-development-status">current browser support status and known issues</a> and the project's target <a href="http://jquerymobile.com/gbs/" rel="external"><strong>graded browser matrix</strong>.</p>
4242

4343

4444

@@ -48,4 +48,4 @@ <h2>Target platform additions for beta</h2>
4848
</div><!-- /page -->
4949

5050
</body>
51-
</html>
51+
</html>

docs/api/events.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Events</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/api/globalconfig.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Configuring default settings</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/api/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery UI Mobile Framework - API</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/api/mediahelpers.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Responsive Layout Helpers</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
@@ -22,9 +22,11 @@ <h1>Responsive Layout Helpers</h1>
2222

2323

2424
<h2>Media Query Helper Classes</h2>
25+
<p class="ui-bar-e ui-body"><strong>Note: This feature is deprecated in beta, and will be removed after that. We recommend using CSS3 Media Queries instead.</strong></p>
2526
<p>jQuery Mobile adds classes to the <code>HTML</code> element that mimic browser orientation and common min/max-width CSS media queries. These classes are updated on load, resize and orientationchange, allowing you to key off these classes in your CSS, to create <a href="http://www.alistapart.com/articles/responsive-web-design/">responsive layouts</a> - even in browsers that don't support media queries! </p>
2627

27-
<h3>Orientation Classes</h3>
28+
<h3>Orientation Classes </h3>
29+
2830
<p>The HTML element will always have a class of either "portrait" or "landscape", depending on the orientation of the browser or device. You can utilize these in your CSS like this:</p>
2931
<pre>
3032
<code>

docs/api/methods.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Methods</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/api/themes.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Framework - Static Containers, States</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
@@ -154,7 +154,7 @@ <h2>Lists &amp; Buttons</h2>
154154
<p>If you want to add visual emphasis to a button and help it stand out visually from its parent toolbar, an alternate swatch color can be set by adding a <code> data-theme="a"</code> to the anchor. Once an alternate swatch color is set on a button in the markup, the framework won't override that color if the parent theme is changed, because you made a conscious decision to set it.</p>
155155

156156
<div class="swatch-bars">
157-
<div data-role="header" data-theme="a" class="ui-bar" data-backbtn="false">
157+
<div data-role="header" data-theme="a" class="ui-bar" >
158158
<div><!-- wrapper div to have control over butttons -->
159159
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="a">A</a>
160160
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="b">B</a>
@@ -163,7 +163,7 @@ <h2>Lists &amp; Buttons</h2>
163163
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="e">E</a>
164164
</div>
165165
</div>
166-
<div data-role="header" data-theme="b" class="ui-bar" data-backbtn="false">
166+
<div data-role="header" data-theme="b" class="ui-bar" >
167167
<div><!-- wrapper div to have control over butttons -->
168168
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="a">A</a>
169169
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="b">B</a>
@@ -172,7 +172,7 @@ <h2>Lists &amp; Buttons</h2>
172172
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="e">E</a>
173173
</div>
174174
</div>
175-
<div data-role="header" data-theme="c" class="ui-bar" data-backbtn="false">
175+
<div data-role="header" data-theme="c" class="ui-bar" >
176176
<div><!-- wrapper div to have control over butttons -->
177177
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="a">A</a>
178178
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="b">B</a>
@@ -181,7 +181,7 @@ <h2>Lists &amp; Buttons</h2>
181181
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="e">E</a>
182182
</div>
183183
</div>
184-
<div data-role="header" data-theme="d" class="ui-bar" data-backbtn="false">
184+
<div data-role="header" data-theme="d" class="ui-bar" >
185185
<div><!-- wrapper div to have control over butttons -->
186186
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="a">A</a>
187187
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="b">B</a>
@@ -190,7 +190,7 @@ <h2>Lists &amp; Buttons</h2>
190190
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="e">E</a>
191191
</div>
192192
</div>
193-
<div data-role="header" data-theme="e" class="ui-bar" data-backbtn="false">
193+
<div data-role="header" data-theme="e" class="ui-bar" >
194194
<div><!-- wrapper div to have control over butttons -->
195195
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="a">A</a>
196196
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="b">B</a>

docs/buttons/api-buttons.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Buttons</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/buttons/buttons-grouped.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Grouped Buttons</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/buttons/buttons-icons.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Button icons</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/buttons/buttons-inline.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Inline buttons</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/buttons/buttons-themes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Button Theming</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/buttons/buttons-types.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Button types</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/buttons/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Buttons</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/content/api-content.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Content formatting</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<script src="../../js/jquery.js"></script>

docs/content/content-collapsible.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Collapsible Content</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/content/content-grids.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Content Grids</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/content/content-html.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - HTML formatting</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

docs/content/content-themes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>jQuery Mobile Docs - Content Themes</title>
77
<link rel="stylesheet" href="../../themes/default/" />
88
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>

0 commit comments

Comments
 (0)