mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Changed the default for the delayedClickEnabled option to false. It was experimental anyways, for Android based browsers, and was breaking link clicking on iOS.
This commit is contained in:
parent
685b2cd0bf
commit
4c8d7237df
2 changed files with 3 additions and 3 deletions
|
|
@ -30,7 +30,7 @@ jQuery.widget( "mobile.scrollview", jQuery.mobile.widget, {
|
|||
|
||||
pagingEnabled: false,
|
||||
delayedClickSelector: "a,input,textarea,select,button,.ui-btn",
|
||||
delayedClickEnabled: true
|
||||
delayedClickEnabled: false
|
||||
},
|
||||
|
||||
_makePositioned: function($ele)
|
||||
|
|
|
|||
|
|
@ -144,8 +144,8 @@ $(function(){
|
|||
<div data-role="fieldcontain">
|
||||
<label for="s_delay" class="select">Delay Form Element Click:</label>
|
||||
<select name="s_delay" id="s_delay" onchange="changeDelayFormElementClick();">
|
||||
<option value="yes" selected="selected">Yes</option>
|
||||
<option value="no">No</option>
|
||||
<option value="yes">Yes</option>
|
||||
<option value="no" selected="selected">No</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue