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
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,22 @@ tribute.append(2, [

This will append the new values to the third collection.

You can replace data as well by passing true in second parameter of `appendCurrent` and in third parameter of `append`.

```js
tribute.appendCurrent([
{ name: "Howard Johnson", occupation: "Panda Wrangler", age: 27 },
{ name: "Fluffy Croutons", occupation: "Crouton Fluffer", age: 32 }
], true);
```

```js
tribute.append(2, [
{ name: "Howard Johnson", occupation: "Panda Wrangler", age: 27 },
{ name: "Fluffy Croutons", occupation: "Crouton Fluffer", age: 32 }
], true);
```

### Programmatically detecting an active Tribute dropdown

If you need to know when Tribute is active you can access the `isActive` property of an instance.
Expand Down