mirror of
https://github.com/apache/cordova-plugin-screen-orientation.git
synced 2025-02-24 00:52:50 +08:00
8 lines
246 B
JavaScript
8 lines
246 B
JavaScript
![]() |
var exec = require('cordova/exec'),
|
||
|
screenOrientation = {};
|
||
|
|
||
|
screenOrientation.setOrientation = function(orientation) {
|
||
|
exec(null, null, "YoikScreenOrientation", "screenOrientation", [orientation]);
|
||
|
};
|
||
|
|
||
|
module.exports = screenOrientation;
|