Ver Fonte

Changed response from display button

Apollo há 3 anos atrás
pai
commit
90b139c79c
2 ficheiros alterados com 2 adições e 2 exclusões
  1. 1 1
      templates/index.html
  2. 1 1
      webserver.go

+ 1 - 1
templates/index.html

@@ -12,7 +12,7 @@
         <div class="grid-x">
             <h1 class="large-12 medium-12 small-12 cell text-center">goRoku Controller</h1>
             <div class="large-12 medium-12 small-12 cell text-center">
-                <h3 id="at">TV: </h3>
+                <h3 id="at">TV</h3>
                 <p>
                     <button type="button" class="alert button" onclick="sendCommandTV('power')">Power</button> <button type="button" class="alert button" onclick="sendCommandTV('display')">Display</button><br>
                     <button type="button" class="button" onclick="sendCommandTV('back')">Back</button> <button type="button" class="button" onclick="sendCommandTV('home')">Home</button><br>

+ 1 - 1
webserver.go

@@ -75,7 +75,7 @@ func (w *WebServer) tvcmd(c echo.Context) error {
 		w.At = DebugInfo(w.tv_ip)
 		data := make(map[string]interface{})
 		data["at"] = w.At
-		return c.String(http.StatusOK, "TV: "+w.At)
+		return c.String(http.StatusOK, w.At)
 	case "pluto":
 		Post(fmt.Sprintf("http://%s:8060/launch/%d", w.tv_ip, 74519))
 	case "pluto-cops":