mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-20 09:38:37 +08:00
13 lines
189 B
JavaScript
13 lines
189 B
JavaScript
_('Emitter');
|
|
|
|
Emitter.mixin(exports);
|
|
|
|
window.addEventListener('orientationchange', function ()
|
|
{
|
|
setTimeout(function ()
|
|
{
|
|
exports.emit('change');
|
|
}, 150);
|
|
}, false);
|
|
|