Files
cordova-plugin-screen-orien…/www/screenorientation.android.js
T
2014-07-30 08:49:28 +10:00

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;