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.
2017-01-19 22:49:17 +01:00
|
|
|
{{ define "sessionHandler" }}
|
2017-01-19 17:03:57 +01:00
|
|
|
<script type="text/javascript">
|
2017-01-19 22:49:17 +01:00
|
|
|
function playSound(cmd, sndnm) {
|
2017-01-19 17:03:57 +01:00
|
|
|
var data = {
|
2017-01-19 22:49:17 +01:00
|
|
|
command: cmd,
|
|
|
|
|
soundname: sndnm
|
2017-01-19 17:03:57 +01:00
|
|
|
};
|
|
|
|
|
$.post("/playsound", data, function(data, success) {});
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<a href="/logout">Logout</a><br/>
|
2017-01-19 22:49:17 +01:00
|
|
|
{{ end }}
|