Polymer / pwa-helpers

Small helper methods or mixins to help you build web apps.
BSD 3-Clause "New" or "Revised" License
440 stars 48 forks source link

Uninstall watchers #22

Open yuheiy opened 6 years ago

yuheiy commented 6 years ago

I think it would be better if there was a way to uninstall them.

const uninstall = installMediaQueryWatcher(`(min-width: 600px)`, (matches) => {
  console.log(matches ? 'wide screen' : 'narrow sreen');
});

component.onDestroy(uninstall);