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 /bugzillaBugTriage.user.js | |
parent | 65db58735021ec41ea90316165de47f2d6f55ffe (diff) | |
download | bugzilla-triage-34bd7b9b8c29d5d7d72a18ed376d93fa7ba980fe.tar.gz |
jquery.rpc.js added (with various patches)
Diffstat (limited to 'bugzillaBugTriage.user.js')
-rw-r--r-- | bugzillaBugTriage.user.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bugzillaBugTriage.user.js b/bugzillaBugTriage.user.js index eed156c..1a798a4 100644 --- a/bugzillaBugTriage.user.js +++ b/bugzillaBugTriage.user.js @@ -9,6 +9,9 @@ // @include https://bugzilla.redhat.com/show_bug.cgi* // @include https://bugzilla.redhat.com/process_bug.cgi // @require http://mcepl.fedorapeople.org/scripts/xmlrpc.js +// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js +// @require http://mcepl.fedorapeople.org/scripts/jquery.rpc.js + // ==/UserScript== // https://bugzilla.redhat.com/show_bug.cgi?id=451951 @@ -407,6 +410,7 @@ function queryForSelection() { * @param callback function catching callback */ function sendRequest(url,data,method,callback) { + //$.rpc(url, dataType, onLoadCallback, version); GM_xmlhttpRequest({ method: method, url: url, |