forked from Polymer/old-docs-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtk-twoway-binding.html
More file actions
executable file
·41 lines (38 loc) · 986 Bytes
/
tk-twoway-binding.html
File metadata and controls
executable file
·41 lines (38 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<link rel="import" href="/samples/components/tk-twoway-binding.html">
<div class="row-fluid">
<div class="span8">
<!-- Source tabs -->
<ul id="myTab" class="nav nav-tabs">
<li class="active"><a href="#element12" data-toggle="tab">tk-twoway-binding.html</a></li>
<li><a href="#index12" data-toggle="tab">index.html</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="element12">
{% highlight html %}
{% include_external ../samples/components/tk-twoway-binding.html %}
{% endhighlight %}
</div>
<div class="tab-pane" id="index12">
{% highlight html %}
<!DOCTYPE html>
<html>
<head>
<script src="polymer-all/polymer/polymer.js"></script>
<link rel="import" href="tk-twoway-binding.html">
</head>
<body>
<tk-element></tk-element>
</body>
</html>
{% endhighlight %}
</div>
</div>
</div>
<div class="span4">
<!-- Running sample -->
<h5>Result</h5>
<div class="well">
<tk-twoway-binding></tk-twoway-binding>
</div>
</div>
</div>