1.0.5 • Published 8 years ago

confirm-zepto v1.0.5

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

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
1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago