null+****@clear*****
null+****@clear*****
2012年 4月 6日 (金) 14:53:11 JST
Kouhei Sutou 2012-04-06 14:53:11 +0900 (Fri, 06 Apr 2012)
New Revision: fd01e75e367fc275acab3855776d3e54773545eb
Log:
admin: fix argument
Modified files:
data/html/admin/js/groonga-admin.js
Modified: data/html/admin/js/groonga-admin.js (+2 -2)
===================================================================
--- data/html/admin/js/groonga-admin.js 2012-04-06 14:49:57 +0900 (3bca1ab)
+++ data/html/admin/js/groonga-admin.js 2012-04-06 14:53:11 +0900 (801cec1)
@@ -283,7 +283,7 @@ jQuery.extend(GroongaAdmin.prototype, {
limit: 25,
},
dataType: "jsonp",
- success: function (data, status) {
+ success: function (data, textStatus, jqXHR) {
var completions = data[1]["complete"];
var items = [];
console.dir(data[1]);
@@ -301,7 +301,7 @@ jQuery.extend(GroongaAdmin.prototype, {
}
response(items);
},
- error: function(XMLHttpRequest, textStatus, errorThrown) {
+ error: function(jqXHR, textStatus, errorThrown) {
}
})
}