Socket
Socket
Sign inDemoInstall

confirm-zepto

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    confirm-zepto

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


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

confirm

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

Install

npm install confirm-zepto

Prerequisite

Zepto or jQuery, $ symbol needs to be global.

Usage

confirm({
    title: 'Please input whatever you want:',
    negative: 'cancel',
    positive: 'ok',
    callback: function(isSuccess) {
        // callback isSuccess{boolean}
    }
});

Options

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

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

Change Logs

  • 1.0.5: long title display bug fix

Keywords

FAQs

Last updated on 18 Aug 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