Files
eruda/eustia/orientation.js
2016-03-13 23:11:40 +08:00

15 lines
216 B
JavaScript

_('Emitter');
orientation = {};
Emitter.mixin(orientation);
window.addEventListener('orientationchange', function ()
{
setTimeout(function ()
{
orientation.emit('change');
}, 150);
}, false);