Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 663 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 663 Bytes

CordovaCallNumberPlugin

Call a number directly from your cordova application.

Install the plugin using:

cordova plugin add https://github.com/Rohfosho/CordovaCallNumberPlugin.git

or

npm install call-number

Use the plugin in your JS file:

window.plugins.CallNumber.callNumber(onSuccess, onError, number, bypassAppChooser);

number: String; phone number to call (e.g. "1234567890")

bypassAppChooser: boolean; true if you always wish to bypass the app chooser if user has multiple applications installed that can handle calls

Make sure to create onSuccess and onError call back functions.