cordova-plugin-screen-orien.../www/screenorientation.android.js

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;