()
| 44 | } |
| 45 | |
| 46 | function lua_decrypt() { |
| 47 | $.ajax({ |
| 48 | url: '/dump_lua_decrypt', |
| 49 | type: 'GET', |
| 50 | dataType: 'json', |
| 51 | success: function (res) { |
| 52 | alert("解密成功") |
| 53 | }, |
| 54 | error: function (res) { |
| 55 | alert("解密失败") |
| 56 | } |
| 57 | }); |
| 58 | } |
| 59 | |
| 60 | function lua_push() { |
| 61 | if (!($('#lua_push_file').val())) { |
nothing calls this directly
no outgoing calls
no test coverage detected