This repository has been archived on 2022-01-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gidbig/templates/internal.html
T
2017-01-19 22:49:17 +01:00

13 lines
310 B
HTML

{{ define "sessionHandler" }}
<script type="text/javascript">
function playSound(cmd, sndnm) {
var data = {
command: cmd,
soundname: sndnm
};
$.post("/playsound", data, function(data, success) {});
}
</script>
<a href="/logout">Logout</a><br/>
{{ end }}