close
The Wayback Machine - https://web.archive.org/web/20201128003112/https://github.com/Paldom/PinDialog
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
www
Jan 28, 2014
Jan 28, 2014

README.md

PinDialog

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

Installation

Latest stable release: phonegap local cordova-plugin-pin-dialog
or cordova plugin add cordova-plugin-pin-dialog

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

Installation - PhoneGap Build

Add following to config.xml: <gap:plugin name="cordova-plugin-pindialog" source="npm" />

For older versions, use the following: <gap:plugin name="hu.dpal.phonegap.plugins.pindialog" version="0.1.3" /> or <gap:plugin name="hu.dpal.phonegap.plugins.pindialog" source="plugins.cordova.io" />

Supported Platforms

  • Android
  • iOS

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

License

MIT License

You can’t perform that action at this time.