Re: [w3c/webcomponents] missing guidance on implementing an 'refresh' option. (#562)

That's not an attribute change, it's a property change.  You can be notified of property changes using a property setter:

```js
class MyCustomElement extends HTMLElement {
  set myProperty(val) {
    // myProperty changed
  }
}
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/562#issuecomment-245008814

Received on Tuesday, 6 September 2016 16:32:01 UTC