-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcordova_plugins.js
More file actions
53 lines (53 loc) · 1.58 KB
/
cordova_plugins.js
File metadata and controls
53 lines (53 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
cordova.define('cordova/plugin_list', function(require, exports, module) {
module.exports = [
{
"file": "plugins/org.apache.cordova.geolocation/www/Coordinates.js",
"id": "org.apache.cordova.geolocation.Coordinates",
"clobbers": [
"Coordinates"
]
},
{
"file": "plugins/org.apache.cordova.geolocation/www/PositionError.js",
"id": "org.apache.cordova.geolocation.PositionError",
"clobbers": [
"PositionError"
]
},
{
"file": "plugins/org.apache.cordova.geolocation/www/Position.js",
"id": "org.apache.cordova.geolocation.Position",
"clobbers": [
"Position"
]
},
{
"file": "plugins/org.apache.cordova.geolocation/www/geolocation.js",
"id": "org.apache.cordova.geolocation.geolocation",
"clobbers": [
"navigator.geolocation"
]
},
{
"file": "plugins/org.apache.cordova.device-orientation/www/CompassError.js",
"id": "org.apache.cordova.device-orientation.CompassError",
"clobbers": [
"CompassError"
]
},
{
"file": "plugins/org.apache.cordova.device-orientation/www/CompassHeading.js",
"id": "org.apache.cordova.device-orientation.CompassHeading",
"clobbers": [
"CompassHeading"
]
},
{
"file": "plugins/org.apache.cordova.device-orientation/www/compass.js",
"id": "org.apache.cordova.device-orientation.compass",
"clobbers": [
"navigator.compass"
]
}
]
});