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

8 lines
246 B
JavaScript
Raw Normal View History

2015-05-14 02:30:41 +08:00
var exec = require('cordova/exec'),
screenOrientation = {};
screenOrientation.setOrientation = function(orientation) {
exec(null, null, "YoikScreenOrientation", "screenOrientation", [orientation]);
};
module.exports = screenOrientation;