Skip to content

Commit

Permalink
Fix example 8's attribute usage. Thanks to @TommySorensen
Browse files Browse the repository at this point in the history
- field-required had some string not "true"
  • Loading branch information
ghiden committed Feb 23, 2016
1 parent 5370af5 commit 9e0cdf3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ <h3><a name="example7" class="page-anchor">Example 7 - Callback</a></h3>
minlength="1"
input-class="form-control form-control-small"
match-class="highlight"
field-required="requireExample8a"
field-required="true"
input-name="country8a"&gt;
&lt;/div&gt;

Expand All @@ -298,7 +298,7 @@ <h3><a name="example7" class="page-anchor">Example 7 - Callback</a></h3>
minlength="1"
input-class="form-control form-control-small"
match-class="highlight"
field-required="requireExample8b"
field-required="true"
input-name="country8b"&gt;
&lt;/div&gt;
&lt;/div&gt;
Expand All @@ -308,10 +308,10 @@ <h3><a name="example7" class="page-anchor">Example 7 - Callback</a></h3>
<h3><a name="example8" class="page-anchor">Example 8 - Required</a><span ng-show="form.$valid" class="valid-status valid">[VALID]</span><span class="valid-status invalid" ng-show="form.$invalid">[INVALID]</span></h3>
<div class="padded-row">
<span>Choose two countries</span>
<div angucomplete-alt id="ex8a" placeholder="Search countries" pause="100" selected-object="countrySelected8a" local-data="countries" search-fields="name" title-field="name" minlength="1" input-class="form-control form-control-small" match-class="highlight" field-required="requireExample8a" input-name="country8a">
<div angucomplete-alt id="ex8a" placeholder="Search countries" pause="100" selected-object="countrySelected8a" local-data="countries" search-fields="name" title-field="name" minlength="1" input-class="form-control form-control-small" match-class="highlight" field-required="true" input-name="country8a">
</div>

<div angucomplete-alt id="ex8b" placeholder="Search countries" pause="100" selected-object="countrySelected8b" local-data="countries" search-fields="name" title-field="name" minlength="1" input-class="form-control form-control-small" match-class="highlight" field-required="requireExample8b" input-name="country8b">
<div angucomplete-alt id="ex8b" placeholder="Search countries" pause="100" selected-object="countrySelected8b" local-data="countries" search-fields="name" title-field="name" minlength="1" input-class="form-control form-control-small" match-class="highlight" field-required="true" input-name="country8b">
</div>
</div>
</form>
Expand Down

0 comments on commit 9e0cdf3

Please sign in to comment.