mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-24 09:48:37 +08:00
15 lines
216 B
JavaScript
15 lines
216 B
JavaScript
_('Emitter');
|
|
|
|
orientation = {};
|
|
|
|
Emitter.mixin(orientation);
|
|
|
|
window.addEventListener('orientationchange', function ()
|
|
{
|
|
setTimeout(function ()
|
|
{
|
|
orientation.emit('change');
|
|
}, 150);
|
|
}, false);
|
|
|