1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Anyone can erase now.

Made navbar max 800px like text areas.
This commit is contained in:
Zack Scholl
2016-02-14 07:50:38 -05:00
parent eb049790c3
commit 199f97c7b6
3 changed files with 57 additions and 13 deletions

View File

@@ -39,12 +39,24 @@
max-width: 800px;
margin: 0 auto;
}
@media (min-width: 1200px) {
.container{
max-width: 800px;
}
}
</style>
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
@@ -68,6 +80,9 @@
<li><a href="/{{ $.Title }}?version={{ .VersionNum }}">{{ .VersionDate }}</a></li>
{{ end }}
<li><a href="/{{ .Title }}">Current</a></li>
<li role="separator" class="divider"></li>
<li class="dropdown-header">Options</li>
<li><a href="#" id="{{ .Title }}" class="deleteable">Erase</a></li>
</ul>
</li>
<li><a href="/{{ .Title }}/view"><span class="glyphicon glyphicon-sunglasses" aria-hidden="true"></span> View</a></li>
@@ -79,6 +94,7 @@
</div>
</nav>
<form action='#' id="emit" method="post" name="emit">
<div>
@@ -104,6 +120,25 @@
window.location = "/{{ .Title }}/list";
}
});
$('.deleteable').click(function(event) {
event.preventDefault();
var deleteName = $(this).attr('id')
var href = $(this).attr('href')
console.log(deleteName)
$.ajax({
url: "/deletepage" + '?' + $.param({
"DeleteName": deleteName,
"AdminKey": "none"
}),
type: 'DELETE',
success: function() {
window.location.reload(true);
}
});
});
</script>