Skip to content

Commit

Permalink
Merge pull request barryclark#95 from texasflood/patch-1
Browse files Browse the repository at this point in the history
Fixed absence of checked boolean in sidebar attribute
  • Loading branch information
mdo committed Apr 19, 2015
2 parents 42cf510 + f2840f1 commit daf09fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ It's also available for a reversed layout when you add both classes:
Show an open sidebar on page load by modifying the `<input>` to add the `checked` boolean attribute:

```html
<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox" checked>
```

Using Liquid you can also conditionally show the sidebar open on a per-page basis. For example, here's how you could have it open on the homepage only:
Expand Down

0 comments on commit daf09fe

Please sign in to comment.