Skip to content

Instantly share code, notes, and snippets.

@webinista
Created March 24, 2015 17:33
Show Gist options
  • Save webinista/87ee5ee41b3add4121e1 to your computer and use it in GitHub Desktop.
Save webinista/87ee5ee41b3add4121e1 to your computer and use it in GitHub Desktop.
Use addEventListener/removeEventListener instead of
/*
CSSOM View[1] initially defined addListener() and removeListener() methods for the
MediaQueryList interface (the object type returned by matchMedia()). Later, the
spec changed and now MediaQueryList uses addEventListener/removeEventListener
and MediaQueryList is really a change event in disguise.
Chrome and Opera have made this change. Other browsers are still working on it.
This code snippet makes it possible to use addEventListener/removeEventListener
in (almost) every browser (the usual caveats about browser support apply).
[1] http://dev.w3.org/csswg/cssom-view/
*/
if('addEventListener' in matchMedia('') === false) {
MediaQueryList.prototype.addEventListener = function(ename, callback) {
this.addListener(callback);
}
MediaQueryList.prototype.removeEventListener = function(ename, callback) {
this.removeListener(callback);
}
}
var mq = matchMedia('(min-width: 768px)');
mq.addEventListener('change', function(o){ console.log(o); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment