diff options
author | Matěj Cepl <mcepl@redhat.com> | 2009-11-15 23:35:25 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2009-11-15 23:35:25 +0100 |
commit | 34bd7b9b8c29d5d7d72a18ed376d93fa7ba980fe (patch) | |
tree | a224966e71847bdc2d61dd7f2f13ffd067451cba /jquery.rpc_2968.patch | |
parent | 65db58735021ec41ea90316165de47f2d6f55ffe (diff) | |
download | bugzilla-triage-34bd7b9b8c29d5d7d72a18ed376d93fa7ba980fe.tar.gz |
jquery.rpc.js added (with various patches)
Diffstat (limited to 'jquery.rpc_2968.patch')
-rw-r--r-- | jquery.rpc_2968.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/jquery.rpc_2968.patch b/jquery.rpc_2968.patch new file mode 100644 index 0000000..94344c3 --- /dev/null +++ b/jquery.rpc_2968.patch @@ -0,0 +1,13 @@ +Also, the parseXMLValue function should probably trow an error, +instead of failing silently. + +--- jquery.rpc.js_1.txt 2008-05-23 13:39:21.000000000 +1200 ++++ jquery.rpc.js 2008-06-19 13:13:05.000000000 +1200 +@@ -58,6 +56,7 @@ +case 'boolean': +return (jQuery(childs[i]).text() == 1); +case 'int': ++ case 'i4': +return parseInt(jQuery(childs[i]).text()); +case 'double': +return parseFloat(jQuery(childs[i]).text()); |