Skip to content

Commit

Permalink
releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
ef4 committed Nov 23, 2014
1 parent bc397b1 commit cb4f64d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

### 0.15.-

- ENHANCEMENT: improved liquid-modal API by @rlivsey.

* `otherParams` is a new option that lets you bind parameters
through to the modal component. Unlike `withParams`, they will
not be used to determine if the modal should be rendered.

* both `otherParams` and `withParams` now allows parameter names to
be arbitrarily remapped, so:

````javascript
this.modal('your-modal', {
withParams: ['foo', { bar: 'baz'}]
});
````

Is equivalent to a normal in-template component invoked like this:

````javascript
{{your-modal foo=foo bar=baz}}
````


### 0.14.0

- BREAKING: we have updated the format of liquid-fire to be compatible
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "liquid-fire",
"description": "Animated transitions for Ember applications.",
"version": "0.14.0",
"version": "0.15.0",
"directories": {
"doc": "doc",
"test": "tests"
Expand Down

0 comments on commit cb4f64d

Please sign in to comment.