Skip to content

Commit 4a66ddc

Browse files
committed
Minor fixes on demo pages.
1 parent c5189d0 commit 4a66ddc

File tree

8 files changed

+2
-8
lines changed

8 files changed

+2
-8
lines changed

demos/step-by-step/0_tmpl-read-only/3_if-else-tag-source.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ <h3>Demo: Using {{if}} and {{else}} to render conditional sections.</h3>
3030
{{/if}}
3131
</td>
3232
</tr>
33-
</li>
3433
</script>
3534

3635
<table><tbody class="header"><tr><th>Synopsis</th><th>Title</th></tr></tbody>

demos/step-by-step/0_tmpl-read-only/3_if-else-tag.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ <h3>Demo: Using {{if}} and {{else}} to render conditional sections.</h3>
2828
{{/if}}
2929
</td>
3030
</tr>
31-
</li>
3231
</script>
3332

3433
<table><tbody class="header"><tr><th>Synopsis</th><th>Title</th></tr></tbody>

demos/step-by-step/0_tmpl-read-only/4_each-tag-source.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ <h3>Demo: Using {{each}} to render repeating sections.</h3>
2828
</em>
2929
</td>
3030
</tr>
31-
</li>
3231
</script>
3332

3433
<table><tbody class="header"><tr><th>Synopsis</th><th>Title</th></tr></tbody>

demos/step-by-step/0_tmpl-read-only/4_each-tag.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ <h3>Demo: Using {{each}} to render repeating sections.</h3>
2626
</em>
2727
</td>
2828
</tr>
29-
</li>
3029
</script>
3130

3231
<table><tbody class="header"><tr><th>Synopsis</th><th>Title</th></tr></tbody>

demos/step-by-step/0_tmpl-read-only/5_javascript-source.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ <h3>Demo: Using JavaScript expressions and functions calls within templates.</h3
3434
</em>
3535
</td>
3636
</tr>
37-
</li>
3837
</script>
3938

4039
<table><tbody class="header"><tr><th>Synopsis</th><th>Title</th></tr></tbody>

demos/step-by-step/0_tmpl-read-only/5_javascript.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ <h3>Demo: Using JavaScript expressions and functions calls within templates.</h3
3232
</em>
3333
</td>
3434
</tr>
35-
</li>
3635
</script>
3736

3837
<table><tbody class="header"><tr><th>Synopsis</th><th>Title</th></tr></tbody>

jquery.tmpl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
// Compile template and associate with name
178178
if ( typeof tmpl === "string" ) {
179179
// This is an HTML string being passed directly in.
180-
tmpl = buildTmplFn( tmpl )
180+
tmpl = buildTmplFn( tmpl );
181181
} else if ( tmpl instanceof jQuery ) {
182182
tmpl = tmpl[0] || {};
183183
}

jquery.tmpl.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)