Skip to content

Commit

Permalink
bumped bower version
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Detering authored and Brian Detering committed Aug 9, 2015
1 parent 321dc91 commit e6517ea
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jquery.repeater",
"main": "jquery.repeater.js",
"version": "1.0.1",
"version": "1.0.2",
"homepage": "https://github.com/DubFriend/jquery.repeater",
"description": "repeatable form input interface",
"keywords": [
Expand Down
32 changes: 16 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,41 +18,41 @@ <h1>Repeater</h1>
<div data-repeater-list="group-a">
<div data-repeater-item>
<input name="untyped-input" value="A"/>

<input type="text" name="text-input" value="A"/>
<input type="date" name="date-input"/>

<input type="date" name="tel-input"/>

<textarea name="textarea-input">A</textarea>

<input type="radio" name="radio-input" value="A" checked/>
<input type="radio" name="radio-input" value="B"/>

<input type="checkbox" name="checkbox-input" value="A" checked/>
<input type="checkbox" name="checkbox-input" value="B"/>

<select name="select-input">
<option value="A" selected>A</option>
<option value="B">B</option>
</select>

<input data-repeater-delete type="button" value="Delete"/>
</div>
<div data-repeater-item>
<input name="untyped-input" value="A"/>

<input type="text" name="text-input" value="B"/>
<input type="date" name="date-input"/>

<input type="date" name="tel-input"/>

<textarea name="textarea-input">B</textarea>

<input type="radio" name="radio-input" value="A" />
<input type="radio" name="radio-input" value="B" checked/>

<input type="checkbox" name="checkbox-input" value="A"/>
<input type="checkbox" name="checkbox-input" value="B" checked/>

<select name="select-input">
<option value="A">A</option>
<option value="B" selected>B</option>
Expand All @@ -62,7 +62,7 @@ <h1>Repeater</h1>
</div>
<input data-repeater-create type="button" value="Add"/>
</form>


<script src="jquery-1.11.1.js"></script>
<script src="jquery.repeater.js"></script>
Expand Down

0 comments on commit e6517ea

Please sign in to comment.