fix admin.js
This commit is contained in:
parent
5d15ab0ea3
commit
23232d4f0e
@ -1,26 +1,4 @@
|
||||
|
||||
function remove(path, id, func) {
|
||||
$.ajax({
|
||||
url: '/1.0/' + encodeURIComponent(path) + '/' + id,
|
||||
method: 'DELETE',
|
||||
type: 'json',
|
||||
error: function(resp) {
|
||||
alert('Mööp.');
|
||||
},
|
||||
success: function(resp) {
|
||||
func();
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
// function approve(path, id, func) {
|
||||
// $.ajax({
|
||||
// url: ''
|
||||
// })
|
||||
// }
|
||||
|
||||
|
||||
function initialize() {
|
||||
|
||||
$('article > footer > a').forEach(function(item) {
|
||||
@ -36,7 +14,8 @@ function initialize() {
|
||||
} else {
|
||||
$(item).on('click', function(event) {
|
||||
if (confirm("RLY?") == true) {
|
||||
remove(path, id, function() {
|
||||
$.ajax('DELETE', '/1.0/' + encodeURIComponent(path) + '/' + id).then(
|
||||
function() {
|
||||
$(node).remove()
|
||||
});
|
||||
};
|
||||
|
@ -2,7 +2,7 @@
|
||||
<head>
|
||||
<title><%block name="title" /></title>
|
||||
<meta charset="utf-8" />
|
||||
<script type="text/javascript" src="/static/ender.js"></script>
|
||||
<script type="text/javascript" src="/js/ender.js"></script>
|
||||
<script type="text/javascript">
|
||||
<%block name="js" />
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user