You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2013/08/23 03:20:08 UTC

[28/35] git commit: Clean up page to use Bootstrap 3

Clean up page to use Bootstrap 3


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/06137e0a
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/06137e0a
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/06137e0a

Branch: refs/heads/master
Commit: 06137e0a9454e8aede5cd2029da07f781d8c4123
Parents: aea3138
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Thu Aug 22 17:46:05 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Thu Aug 22 17:46:05 2013 -0700

----------------------------------------------------------------------
 .../src/test/app1/ExpressionInJsFunction.tml          | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/06137e0a/tapestry-core/src/test/app1/ExpressionInJsFunction.tml
----------------------------------------------------------------------
diff --git a/tapestry-core/src/test/app1/ExpressionInJsFunction.tml b/tapestry-core/src/test/app1/ExpressionInJsFunction.tml
index f3b2415..a97dfe2 100644
--- a/tapestry-core/src/test/app1/ExpressionInJsFunction.tml
+++ b/tapestry-core/src/test/app1/ExpressionInJsFunction.tml
@@ -1,11 +1,13 @@
-<html t:type="border" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_3.xsd" xmlns:p="tapestry:parameter">
+<html t:type="border" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_3.xsd">
 
-    <h1>Expansions within a JS function</h1>
+<h1>Expansions within a JS function</h1>
 
-<t:form>
-    <input id="target"/>
-    <input id="button1" type="button" onclick="test_func();" value="test1"/>
-    <input id="button2" type="button" onclick="test_func_with_map();" value="test2"/>
+<t:form class="form-inline">
+    <div class="form-group">
+        <input class="form-control" id="target"/>
+    </div>
+    <input id="button1" type="button" onclick="test_func();" value="test1" class="btn btn-default"/>
+    <input id="button2" type="button" onclick="test_func_with_map();" value="test2" class="btn btn-default"/>
 </t:form>
 
 </html>