add: circular menu alpha and limited in screen
This commit is contained in:
@@ -39,7 +39,7 @@ module.exports = function(__runtime__, scope){
|
||||
}
|
||||
|
||||
console.show = rtConsole.show.bind(rtConsole);
|
||||
console.hide = rtConsole.show.bind(rtConsole);
|
||||
console.hide = rtConsole.hide.bind(rtConsole);
|
||||
console.clear = rtConsole.clear.bind(rtConsole);
|
||||
console.setTitle = rtConsole.setTitle.bind(rtConsole);
|
||||
|
||||
|
||||
@@ -163,6 +163,7 @@ module.exports = function(runtime, scope){
|
||||
r.body = {};
|
||||
var body = res.body();
|
||||
r.body.string = body.string.bind(body);
|
||||
r.body.bytes = body.bytes.bind(body);
|
||||
r.body.json = function(){
|
||||
return JSON.parse(r.body.string());
|
||||
}
|
||||
|
||||
@@ -26,7 +26,6 @@ public class ExampleUnitTest {
|
||||
|
||||
@Test
|
||||
public void test() throws IOException {
|
||||
MimeTypeMap.getSingleton().getMimeTypeFromExtension();
|
||||
File file = new File("C:\\Users\\Stardust\\Desktop\\1.txt");
|
||||
System.out.println(PFiles.read(file));
|
||||
String url = "http://posttestserver.com/post.php?dir=example";
|
||||
|
||||
Reference in New Issue
Block a user