MCPcopy Create free account
hub / github.com/GrowthEase/GameSentry / showFunction

Function showFunction

res/static/js/function.js:49–69  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

47let select_trace_class = new Map()
48
49function showFunction() {
50 if (!select_class_value) {
51 alert("请选择对应的class")
52 return
53 }
54 $.ajax({
55 url: '/show_class',
56 type: 'POST',
57 data: {
58 "class_handle": select_class_value.addr,
59 },
60 dataType: 'json',
61 success: function (res) {
62 $("#class_show_info").html(res);
63 $('#classModal').modal('show');
64 },
65 error: function (res) {
66 alert("配置失败")
67 }
68 });
69}
70
71function traceFunction() {
72 if (!select_class_value) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected