Skip to content
Open
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,15 +298,15 @@ Sync allows you to hook into and override or extend all of the actions it perfor

partial name 'list_row', resource name 'todo', order of lookup:

1. Sync.TodoListRow
2. Sync.ListRow
3. Sync.View (Default fallback)
1. RenderSync.TodoListRow
2. RenderSync.ListRow
3. RenderSync.View (Default fallback)


For example, if you wanted to fade in/out a row in a sync'd todo list instead of the Sync.View default of instant insert/remove:

```coffeescript
class Sync.TodoListRow extends Sync.View
class RenderSync.TodoListRow extends RenderSync.View

beforeInsert: ($el) ->
$el.hide()
Expand Down