Files
cordova-plugin-screen-orien…/www/screenorientation.wp8.js
T

8 lines
240 B
JavaScript

var exec = require('cordova/exec'),
screenOrientation = {};
screenOrientation.setOrientation = function(orientation) {
exec(null, null, "YoikScreenOrientation", "screenOrientation", [orientation]);
};
module.exports = screenOrientation;