Merge remote-tracking branch 'origin/master'

This commit is contained in:
Michal Čihař 2012-04-19 10:41:18 +02:00
commit 15f9210764

View File

@ -626,6 +626,12 @@ $(document).ready(function() {
PMA_addDatepicker($(this));
});
}
/**
* Add attribute to text boxes for iOS devices (based on bugID: 3508912)
*/
if (navigator.userAgent.match(/(iphone|ipod|ipad)/i)) {
$('input[type=text]').attr('autocapitalize','off').attr('autocorrect','off');
}
});
/**