Sign in
eclipse
/
app4mc
/
org.eclipse.app4mc.cloud
/
97e78d74dbf86fbca74b77916f766d63fdd89d60
/
.
/
manager
/
src
/
main
/
resources
/
static
/
js
/
admin.js
blob: 0ece8dcdce6d81451326cae2e506b89b632197f8 [
file
] [
log
] [
blame
]
function
removeService
(
service
)
{
var
token
=
$
(
'#_csrf'
).
attr
(
'content'
);
var
header
=
$
(
'#_csrf_header'
).
attr
(
'content'
);
$
.
ajax
({
type
:
'POST'
,
url
:
'/admin/remove/'
+
service
,
success
:
function
(
result
)
{
location
.
reload
();
}
});
}