From b84682eb6a0d42eb905f48e63dabf53febdfa35a Mon Sep 17 00:00:00 2001 From: Mike North Date: Thu, 23 Aug 2018 08:01:39 -0700 Subject: [PATCH] fix: update README to clarify purpose of mixin Fixes #82 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bda82712..b173e428 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ let MyView = Ember.View.extend({ ### Mixin: `ResizeAware` -A little sugar on top of the service, making it as easy as possible to respond to resize events in an ember-idiomatic way. Just as you can implement mouse events on your views via methods like `click`, you can now implement `didResize` and `debouncedDidResize` methods as well. +A little sugar on top of the service, making it as easy as possible to respond to resize events in an ember-idiomatic way. Just as you can implement mouse events on your views via methods like `click`, you can now implement `didResize` and `debouncedDidResize` methods as well. When you use this mixin on a component, **resize events will only fire if that component's size is affected**. ```js import ResizeAware from 'ember-resize/mixins/resize-aware';