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