blob: ed472b5e56410fcc6c50b8f53d408b79794b164a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
import Quicksearch from '../../../vue/components/Quicksearch.vue';
STUDIP.domReady(() => {
jQuery(".serversettings .index_server a").on("click", function () {
var host_id = jQuery(this).closest("tr").data("host_id");
var active = jQuery(this).is(".checked") ? 0 : 1;
var a = this;
jQuery.ajax({
"url": STUDIP.ABSOLUTE_URI_STUDIP + "dispatch.php/oer/admin/toggle_index_server",
"data": {
'host_id': host_id,
'active': active
},
"type": "post",
"success": function (html) {
jQuery(a).html(html);
if (active) {
jQuery(a).addClass("checked").removeClass("unchecked");
} else {
jQuery(a).addClass("unchecked").removeClass("checked");
}
}
});
return false;
});
jQuery(".serversettings .active a").on("click", function () {
var host_id = jQuery(this).closest("tr").data("host_id");
var active = jQuery(this).is(".checked") ? 0 : 1;
var a = this;
jQuery.ajax({
"url": STUDIP.ABSOLUTE_URI_STUDIP + "dispatch.php/oer/admin/toggle_server_active",
"data": {
'host_id': host_id,
'active': active
},
"type": "post",
"success": function (html) {
jQuery(a).html(html);
if (active) {
jQuery(a).addClass("checked").removeClass("unchecked");
} else {
jQuery(a).addClass("unchecked").removeClass("checked");
}
}
});
return false;
});
});
|