New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bootstrap-dialogs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bootstrap-dialogs

Twitter Bootstrap Modal Dialogs

  • 0.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

Bootstrap Dialogs

Latest npm version Number of npm downloads Build Status

Description

Asynchronous modal dialogs for the synchronous window.alert, window.confirm and window.prompt, styled and managed by Twitter Bootstrap. Pretty similar to Bootbox, yet using jQuery's Deferred objects.

Usage

alert, confirm and prompt all support custom title and body. Additionally, they support setting the button text and severity (default and danger at the moment).

// Alert dialog with custom title and body
Bootstrap.Dialogs.alert({ title: 'Alert title', body: 'Alert body' })
  .done(function () {
    ...
  });

// Confirm dialog with default text
Bootstrap.Dialogs.confirm()
  .done(function () {
    ...
  })
  .fail(function () {
    ...
  });

// Prompt dialog with custom title and body
Bootstrap.Dialogs.prompt({ title: 'What is your name?', body: 'Please enter your name' })
  .done(function (name) {
    ...
  })
  .fail(function () {
    ...
  });
  
// Confirm dialog with custom button text
Bootstrap.Dialogs.confirm({ ok: 'Confirm', cancel: 'Abort' });
  
// Critical alert dialog
Bootstrap.Dialogs.alert({ danger: true });

Development

TL;DR: npm install && npm test

Install Node and Npm using your packet manager of choice.

Install development dependencies:

npm install

Build and run the tests:

npm test

Start a development cycle listening for changes to files running a simple static server, CoffeeScript linting + compilation, and the test suite:

npm start

Examples

To see the examples in action, issue npm install && npm start and access http://localhost:8000/examples/.

Upgrade the distribution files

In order to upgrade the distribution files bundled in the repo, run npm run-script dist.

Perform release

  • Update Release notes
  • Bump package.json and bower.json version numbers
  • Run npm run dist to update all distribution sources
  • git tag -a <tag> with the appropriate version number

Release notes

v0.3.1 (2015-06-04)

  • Support require of jQuery and bootstrap for better browserify integration.

v0.3.0 (2015-05-28)

  • Add very basic CommonJS support.

v0.2.8 (2014-05-06)

  • Fix leak of click handlers between buttons.

v0.2.7 (2014-02-25)

  • Disable scrolling of body behind a dialog.

v0.2.6

  • Upgrade jQuery dependency to 1.10.2.
  • Capitalize "OK" texts.

v0.2.5

  • Make Bower dependencies looser.

v0.2.4

  • Fix #5: Allow clicking the backdrop to dismiss (unless "lock" is true).
  • Fix #4: Add "lock" option to disable ESC closing.
  • Replace noButtons with lock option.

v0.2.3

  • Remove positional arguments support from .dialog.
  • Add noButtons option to .dialog.

v0.2.2

  • Add return option to allow confirm dialogs to optionally be resolvable by pressing the return key.

v0.2.1

  • Fix #3: Allow setting alert, confirm and prompt button texts.

v0.2.0

  • Update API's argument passing style to be objects rather than regular argument list.
  • Fix #2: Add option to make the 'OK' button take on the btn-danger class.

v0.1.0

  • Add keyboard bindings for Return and Escape

v0.0.3

  • Add grunt-cli as a dependency
  • Depend on jQuery 1.8.3 to match Bootstrap
  • Allow buttons to be jQuery objects or DOM elements
  • Make "Ok" buttons primary

v0.0.2

  • Add Bootstrap and jQuery as component dependencies.
  • Submit prompt on Return keypress.
  • Give prompt input focus.
  • Wrap titles in h3.
  • Add close button by default.

v0.0.1

  • Initial release.

License

Distrubuted under the ISC license. Please refer to the LICENSE.

Keywords

FAQs

Package last updated on 04 Jun 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc