z1key.phonegap.plugins.pindialog

0.1.10 • Public • Published

PinDialog

PhoneGap numeric password dialog plugin for Android and iOS. Forked from https://github.com/apache/cordova-plugin-dialogs.git

Installation:

cordova plugin add https://github.com/Paldom/PinDialog.git or phonegap local plugin add https://github.com/Paldom/PinDialog.git

Usage:

// Show pin dialog
window.plugins.pinDialog.prompt("message", callback, "title", ["OK","Cancel"]);

Callback:

function callback(results)
{
    if(results.buttonIndex == 1)
    {
        // OK clicked, show input value
        alert(results.input1);
    }
    if(results.buttonIndex == 2)
    {
        // Cancel clicked
        alert("Cancel");
    }
};

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i z1key.phonegap.plugins.pindialog

      Weekly Downloads

      7

      Version

      0.1.10

      License

      MIT

      Last publish

      Collaborators

      • z1key