mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
window.matchMedia =
|
|
window.matchMedia ||
|
|
function () {
|
|
return {
|
|
matches: false,
|
|
addListener: function () {},
|
|
removeListener: function () {},
|
|
};
|
|
};
|