Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Unified Diff: experimental/webtry/templates/sidebar.html

Issue 656463002: add support for skfiddle width/height options (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add new db creation commands to the design documnt Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/webtry/templates/index.html ('k') | experimental/webtry/templates/workspace.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/webtry/templates/sidebar.html
diff --git a/experimental/webtry/templates/sidebar.html b/experimental/webtry/templates/sidebar.html
new file mode 100644
index 0000000000000000000000000000000000000000..c2f33fec482a92612a0871ae6972f79a346153e8
--- /dev/null
+++ b/experimental/webtry/templates/sidebar.html
@@ -0,0 +1,25 @@
+<section id="sidebar">
+ <div class="panel panel-primary">
+ <div class="panel-heading">
+ <h3 class="panel-title">
+ Options
+ </h3>
+ </div>
+ <div class="panel-body">
+ <form class="form-horizontal" role="form">
+ <div class="form-group">
+ <label for="image-width" class="col-sm-4 control-label">Width</label>
+ <div class="col-sm-8">
+ <input type="number" class="form-control" id="image-width" value="{{.Width}}">
+ </div>
+ </div>
+ <div class="form-group">
+ <label for="image-height" class="col-sm-4 control-label">Height</label>
+ <div class="col-sm-8">
+ <input type="number" class="form-control" id="image-height" value="{{.Height}}">
+ </div>
+ </div>
+ </form>
+ </div>
+ </div>
+</section>
« no previous file with comments | « experimental/webtry/templates/index.html ('k') | experimental/webtry/templates/workspace.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698