0.1.10 • Published 8 years ago

z1key.phonegap.plugins.pindialog v0.1.10

Weekly downloads
1
License
MIT
Repository
-
Last release
8 years ago

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");
    }
};
0.1.10

8 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.3

8 years ago