mirror of
https://github.com/apache/cordova-plugin-screen-orientation.git
synced 2025-02-24 09:02:51 +08:00
setOrientation moved to individual ios and android js files
This commit is contained in:
parent
42ab0af854
commit
60c907c902
@ -2,9 +2,9 @@
|
|||||||
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
|
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
id="net.yoik.cordova.plugins.screenorientation"
|
id="net.yoik.cordova.plugins.screenorientation"
|
||||||
version="1.1.1">
|
version="1.1.2">
|
||||||
|
|
||||||
<name>Yoik Screen Orientation</name>
|
<name>Screen Orientation</name>
|
||||||
<description>Adds Screen Orientation API lock and unlock functions to the global screen object in android, iOS and BB10.</description>
|
<description>Adds Screen Orientation API lock and unlock functions to the global screen object in android, iOS and BB10.</description>
|
||||||
<license>MIT</license>
|
<license>MIT</license>
|
||||||
|
|
||||||
@ -37,6 +37,9 @@
|
|||||||
<param name="android-package" value="net.yoik.cordova.plugins.screenorientation.YoikScreenOrientation" />
|
<param name="android-package" value="net.yoik.cordova.plugins.screenorientation.YoikScreenOrientation" />
|
||||||
</feature>
|
</feature>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
<js-module src="www/screenorientation.android.js" name="screenorientation.android">
|
||||||
|
<merges target="cordova.plugins.screenorientation" />
|
||||||
|
</js-module>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<platform name="blackberry10">
|
<platform name="blackberry10">
|
||||||
|
8
www/screenorientation.android.js
Normal file
8
www/screenorientation.android.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
var exec = require('cordova/exec'),
|
||||||
|
screenOrientation = {};
|
||||||
|
|
||||||
|
screenOrientation.setOrientation = function(orientation) {
|
||||||
|
exec(null, null, "YoikScreenOrientation", "screenOrientation", ['set', orientation]);
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = screenOrientation;
|
@ -1,27 +1,3 @@
|
|||||||
/*
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2014
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
var screenOrientation = {};
|
var screenOrientation = {};
|
||||||
|
|
||||||
screenOrientation.setOrientation = function(orientation) {
|
screenOrientation.setOrientation = function(orientation) {
|
||||||
|
@ -1,26 +1,11 @@
|
|||||||
/*
|
var exec = require('cordova/exec'),
|
||||||
The MIT License (MIT)
|
screenOrientation = {};
|
||||||
|
|
||||||
Copyright (c) 2014
|
screenOrientation.setOrientation = function(orientation) {
|
||||||
|
exec(null, null, "YoikScreenOrientation", "screenOrientation", ['set', orientation]);
|
||||||
|
};
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
module.exports = screenOrientation;
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
// ios orientation callback/hook
|
// ios orientation callback/hook
|
||||||
window.shouldRotateToOrientation = function(orientation) {
|
window.shouldRotateToOrientation = function(orientation) {
|
||||||
@ -48,5 +33,3 @@ window.shouldRotateToOrientation = function(orientation) {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = {};
|
|
@ -21,9 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
*/
|
*/
|
||||||
var argscheck = require('cordova/argscheck'),
|
var screenOrientation = {},
|
||||||
exec = require('cordova/exec'),
|
|
||||||
screenOrientation = {},
|
|
||||||
Orientations = [
|
Orientations = [
|
||||||
'portrait-primary',
|
'portrait-primary',
|
||||||
// The orientation is in the primary portrait mode.
|
// The orientation is in the primary portrait mode.
|
||||||
@ -43,7 +41,8 @@ screenOrientation.Orientations = Orientations;
|
|||||||
screenOrientation.currOrientation = 'unlocked';
|
screenOrientation.currOrientation = 'unlocked';
|
||||||
|
|
||||||
screenOrientation.setOrientation = function(orientation) {
|
screenOrientation.setOrientation = function(orientation) {
|
||||||
exec(null, null, "YoikScreenOrientation", "screenOrientation", ['set', orientation]);
|
//platform specific files override this function
|
||||||
|
console.log('setOrientation not supported on device');
|
||||||
};
|
};
|
||||||
|
|
||||||
function addScreenOrientationApi(obj) {
|
function addScreenOrientationApi(obj) {
|
||||||
|
Loading…
Reference in New Issue
Block a user