diff options
| author | okalintu <ilkka.oks4nen@gmail.com> | 2016-01-17 21:01:08 +0200 |
|---|---|---|
| committer | okalintu <ilkka.oks4nen@gmail.com> | 2016-01-17 21:01:08 +0200 |
| commit | bbe122289cd2757b04ff1032d0af03c9ab02f995 (patch) | |
| tree | 73c1cd05f703030f09d0a7d871ea323baed8eebd /f/templates/log.html | |
| parent | 1f9a0537db8d1a28db411843b800510b6846dc8f (diff) | |
| parent | d53ac7d764c6eb9f17f6f1403d98cf031136a377 (diff) | |
fixed minor bugs in logbroadcast
Diffstat (limited to 'f/templates/log.html')
| -rw-r--r-- | f/templates/log.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/f/templates/log.html b/f/templates/log.html new file mode 100644 index 0000000..43ae8ff --- /dev/null +++ b/f/templates/log.html @@ -0,0 +1,16 @@ +<!doctype html> +<html> +<head> +<title>Queuelog</title> +<meta charset="utf-8"> +<script src="f/scripts/angular/angular.min.js"></script> +<script src="/socket.io/socket.io.js"></script> +<script src="f/scripts/log.js"></script> +</head> +<body ng-app="logapp"> +<div id="container" ng-controller="logctrl"> +<p ng-repeat="msg in logmessages">{{msg}}</p> +</div> + +</body> +</html> |
