mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-21 14:44:44 +00:00
if type attr is used from method attr, make sure it's lowercase first. Fixes #1280. Still needs a unit test but I'll need to think about how best to do it.
This commit is contained in:
parent
b35274a8a4
commit
e6095a357a
1 changed files with 1 additions and 1 deletions
|
|
@ -636,7 +636,7 @@
|
|||
|
||||
$.mobile.changePage({
|
||||
url: url,
|
||||
type: type || "get",
|
||||
type: type && type.toLowerCase() || "get",
|
||||
data: $(this).serialize()
|
||||
},
|
||||
undefined,
|
||||
|
|
|
|||
Loading…
Reference in a new issue