From 09286920ba341262aea2965b8d1667e4d1ba6bed Mon Sep 17 00:00:00 2001 From: Robert Daniel Kortschak Date: Wed, 16 Jul 2014 16:33:46 +1000 Subject: [PATCH] go.tools/cmd/present: move jquery ui code into static LGTM=adg R=adg CC=golang-codereviews https://golang.org/cl/118760043 --- cmd/present/play.go | 2 +- cmd/present/{js => static}/jquery-ui.js | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cmd/present/{js => static}/jquery-ui.js (100%) diff --git a/cmd/present/play.go b/cmd/present/play.go index d347e311b5..617d2c1623 100644 --- a/cmd/present/play.go +++ b/cmd/present/play.go @@ -28,7 +28,7 @@ func playScript(root, transport string) { buf.WriteString(s) continue } - b, err := ioutil.ReadFile(filepath.Join(root, "js", p)) + b, err := ioutil.ReadFile(filepath.Join(root, "static", p)) if err != nil { panic(err) } diff --git a/cmd/present/js/jquery-ui.js b/cmd/present/static/jquery-ui.js similarity index 100% rename from cmd/present/js/jquery-ui.js rename to cmd/present/static/jquery-ui.js