Skip to content

Commit

Permalink
Update README.md zurb#772
Browse files Browse the repository at this point in the history
  • Loading branch information
SrPatinhas committed Oct 6, 2023
1 parent 397622c commit 29e6eb7
Showing 1 changed file with 16 additions and 0 deletions.
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

0 comments on commit 29e6eb7

Please sign in to comment.