replace hover with custom circular menu
This commit is contained in:
@@ -31,7 +31,7 @@ module.exports = function(runtime, scope){
|
||||
}
|
||||
|
||||
http.request = function(url, options, callback){
|
||||
var call = http.newCall(buildRequest(url, options));
|
||||
var call = http.client().newCall(http.buildRequest(url, options));
|
||||
if(!callback){
|
||||
return wrapResponse(call.execute());
|
||||
}
|
||||
@@ -74,7 +74,7 @@ module.exports = function(runtime, scope){
|
||||
}else if(options.contentType == "application/json"){
|
||||
options.body = JSON.stringify(data);
|
||||
}else{
|
||||
//todo what?
|
||||
options.body = data;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.stardust.autojs.core.templatematching;
|
||||
|
||||
import android.graphics.Color;
|
||||
import android.media.Image;
|
||||
|
||||
import com.stardust.autojs.runtime.api.image.Images;
|
||||
|
||||
/**
|
||||
* Created by Stardust on 2017/10/5.
|
||||
*/
|
||||
|
||||
public class Test {
|
||||
|
||||
public void test(Image image) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user