Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 739 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 739 Bytes

cordova-plugin-roaming

To install this plugin, follow the Command-line Interface Guide.

If you are not using the Cordova Command-line Interface, follow Using Plugman to Manage Plugins.

Exposes 1 methods:

  • get: returns NetworkInfo.isRoaming as a bool

Each method takes two arguments, success and error functions.

Usage examples:

window.plugins.roaming.get(
  function(roaming) {
    console.log("roaming status: " + roaming);
  },
  function() {
    console.log("error loading roaming status");
  }
);