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 | 31f41de680146530cd0d8cf698fc8be40f0581c7 (patch) | |
tree | 25eceb0597ea81f99a5601ed4665b80a8144169c /jquery.rpc.js | |
parent | 1b639a7a30b56aa5391a2ac922935a5a9fdfd349 (diff) | |
download | bugzilla-triage-31f41de680146530cd0d8cf698fc8be40f0581c7.tar.gz |
Applied patch for issue 2968
Diffstat (limited to 'jquery.rpc.js')
-rw-r--r-- | jquery.rpc.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/jquery.rpc.js b/jquery.rpc.js index 397c58f..892eb48 100644 --- a/jquery.rpc.js +++ b/jquery.rpc.js @@ -77,6 +77,7 @@ jQuery.rpc = function(url, dataType, onLoadCallback, version, methods) { 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()); |