CB-7977 Mention deviceready in plugin docs

This commit is contained in:
Josh Soref 2014-11-06 17:02:58 -05:00
parent fb4cff9cc0
commit 032531ae77

View File

@ -19,9 +19,16 @@
# org.apache.cordova.camera # org.apache.cordova.camera
This plugin provides an API for taking pictures and for choosing images from This plugin defines a global `navigator.camera` object, which provides an API for taking pictures and for choosing images from
the system's image library. the system's image library.
Although the object is attached to the global scoped `navigator`, it is not available until after the `deviceready` event.
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
console.log(navigator.camera);
}
## Installation ## Installation
cordova plugin add org.apache.cordova.camera cordova plugin add org.apache.cordova.camera