Skip to content

Commit

Permalink
Fix Jekyll issue with empty elements
Browse files Browse the repository at this point in the history
  • Loading branch information
rniemeyer committed Dec 22, 2011
1 parent 26e5a81 commit 031554a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/extenders.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ This example creates an extender that allows an observable to be marked as requi
{% capture live_example_view %}
<p data-bind="css: { error: firstName.hasError }">
<input data-bind='value: firstName, valueUpdate: "afterkeydown"' />
<span data-bind='visible: firstName.hasError, text: firstName.validationMessage'></span>
<span data-bind='visible: firstName.hasError, text: firstName.validationMessage'> </span>
</p>
<p data-bind="css: { error: lastName.hasError }">
<input data-bind='value: lastName, valueUpdate: "afterkeydown"' />
<span data-bind='visible: lastName.hasError, text: lastName.validationMessage'></span>
<span data-bind='visible: lastName.hasError, text: lastName.validationMessage'> </span>
</p>
{% endcapture %}

Expand Down

0 comments on commit 031554a

Please sign in to comment.