Skip to content

Commit

Permalink
Readme fix
Browse files Browse the repository at this point in the history
  • Loading branch information
javve committed Oct 15, 2011
1 parent 66bc5db commit 0606407
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ You do want a 6.899kb native JavaScript file that enables you to create super fl

# Super simple examples

#### Index existing list
## Index existing list
<div id="hacker-list">
<ul class="list">
<li>
Expand All @@ -25,7 +25,7 @@ And the Javascript

var hackerList = new List('hacker-list', templates);

#### Create list on initialization
## Create list on initialization
<div id="hacker-list">
<ul class="list"></ul>
</div>
Expand All @@ -52,7 +52,7 @@ And the JavaScript
var hackerList = new List('hacker-list', templates, values);


#### Index existing list and then add
## Index existing list and then add
<div id="hacker-list">
<ul class="list">
<li>
Expand All @@ -72,7 +72,7 @@ And the JavaScript

hackerList.add( { name: 'Jonas', city:'Berlin' } );

#### Add automagic search and sort inputs and buttons
## Add automagic search and sort inputs and buttons
<div id="hacker-list">
<input class="search" />
Expand Down

0 comments on commit 0606407

Please sign in to comment.