Skip to content

typo #95

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed

typo #95

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
typo
`li` should be quoted

i.e.

```html
<option name="filter" type="Selector" default='"*"' example-value='li'>
```

becomes

```html
<option name="filter" type="Selector" default='"*"' example-value='"li"'>
```
  • Loading branch information
Nicholas Kinsey committed Jan 30, 2013
commit 22e63ebda8cd60e891c7108b2f5031307b63577a
2 changes: 1 addition & 1 deletion entries/selectable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<option name="distance" type="Number" default="0" example-value='30'>
<desc>Tolerance, in pixels, for when selecting should start. If specified, selecting will not start until the mouse has been dragged beyond the specified distance.</desc>
</option>
<option name="filter" type="Selector" default='"*"' example-value='li'>
<option name="filter" type="Selector" default='"*"' example-value='"li"'>
<desc>The matching child elements will be made selectees (able to be selected).</desc>
</option>
<option name="tolerance" type="String" default='"touch"' example-value='"fit"'>
Expand Down