Skip to content

Commit 8a25599

Browse files
committed
Merge branch 'master' of https://github.com/jquery/jquery-mobile
2 parents 5811440 + 5a76ae7 commit 8a25599

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ A full, complete version and a minified, complete version of the jQuery Mobile J
2323
Submitting bugs
2424
===================================
2525

26-
If you think you've found a bug, please visit the Issue tracker (https://github.com/jquery/jquery-mobile/issues) and create an issue explaining the problem and expected result. Be sure to include any relevant information for reproducing the issue, such as the browser/device (with version #), and the version of the jQuery Mobile code you're running. It also helps a lot to make sure that the bug still exists on jquerymobile.com/test/, as it's possible we may have fixed it already! It is also best to include code to reproduce the bug.
26+
If you think you've found a bug, please visit the Issue tracker (https://github.com/jquery/jquery-mobile/issues) and create an issue explaining the problem and expected result. Be sure to include any relevant information for reproducing the issue, such as the browser/device (with version #), and the version of the jQuery Mobile code you're running. It also helps a lot to make sure that the bug still exists on http://jquerymobile.com/test/, as it's possible we may have fixed it already!
27+
28+
It is also best to include code to reproduce the bug. To do that please use [jsbin](http://jsbin.com) or [jsfiddle](http://jsfiddle.net) and include a link to it in the ticket.
2729

2830

2931
Submitting patches

js/jquery.mobile.fixHeaderFooter.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
(function( $, undefined ) {
99

1010
// Enable touch overflow scrolling when it's natively supported
11-
$.mobile.touchOverflowEnabled = false;
11+
$.mobile.touchOverflowEnabled = true;
1212

1313
// Enabled zoom when touch overflow is enabled. Can cause usability issues, unfortunately
1414
$.mobile.touchOverflowZoomEnabled = false;

js/jquery.mobile.navigation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
var relObj = path.parseUrl( relUrl ),
135135
absObj = path.parseUrl( absUrl ),
136136
protocol = relObj.protocol || absObj.protocol,
137-
doubleSlash = relObj.protocol ? relObj.doubleSlash : ( relObj.doubleSlash || absObj.doubleSlash );
137+
doubleSlash = relObj.protocol ? relObj.doubleSlash : ( relObj.doubleSlash || absObj.doubleSlash ),
138138
authority = relObj.authority || absObj.authority,
139139
hasPath = relObj.pathname !== "",
140140
pathname = path.makePathAbsolute( relObj.pathname || absObj.filename, absObj.pathname ),

0 commit comments

Comments
 (0)