Socket
Socket
Sign inDemoInstall

prompt-zepto

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    prompt-zepto

mobile prompt replacing window.prompt(), mocking iOS prompt UI, supporting custom message and positive button text


Version published
Maintainers
1
Created

Readme

Source

prompt

Android webview has a poor design of window.prompt(). This modules replace window.propmt() with a iOS style dialog, providing uniform UX across all platforms.

Install

npm install prompt-zepto

Prerequisite

Zepto or jQuery, $ symbol needs to be global.

Usage

prompt({
    title: 'Please input whatever you want:',
    negative: 'cancel',
    positive: 'ok',
    placeholder: 'pizza',
    callback: function(input) {
        // callback input{string}, or null if click negative button        
    }
});

options

  • title: title
  • negative: text of negative button, optional, default to be 'cancel'
  • positive: text of positive button, optional, default to be 'ok'
  • placeholder: placeholder of input
  • callback: callback function when button is clicked

no css is required! it's built-in by webpack

Keywords

FAQs

Last updated on 07 Jun 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc