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

Side by Side Diff: chrome/third_party/jstemplate/tutorial_examples/07-jsdisplay-empty.html

Issue 11971042: Move chrome\third_party\jstemplate to third_party\jstemplate since it's used from ui\. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head><title>Jstemplates: Quick example</title>
3 <script src="../util.js" type="text/javascript"></script>
4 <script src="../jsevalcontext.js" type="text/javascript"></script>
5 <script src="../jstemplate.js" type="text/javascript"></script>
6 <script type="text/javascript">
7 var tplData = {username:"Joe User",
8 addresses:[]};
9
10 function showData() {
11 // This is the javascript code that processes the template:
12 var input = new JsEvalContext(tplData);
13 var output = document.getElementById('tpl');
14 jstProcess(input, output);
15 }
16 </script>
17 </head>
18 <body onload="showData()">
19
20 <!--
21 This is the template:
22 -->
23 <div id="tpl">
24 <h1>
25 <span jsselect="username" jscontent="$this">User de Fault</span>'s
26 Address Book
27 </h1>
28 <span jsdisplay="addresses.length==0">Address book is empty.</span>
29 <table cellpadding="5" jsdisplay="addresses.length">
30 <tr><td><h2>Location:</h2></td><td><h2>Label:</h2></td></tr>
31 <tr jsselect="addresses"><td jscontent="location"></td><td jscontent="label"></t d></tr>
32 </table>
33 </div>
34
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698