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

stimulus-bulma-modal

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stimulus-bulma-modal

A StimulusJS controller for Bulma modals.

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

npm codebeat badge

Stimulus Bulma Modal

This is a simple StimulusJS controller that gives a Bulma Modal Component the ability to close itself and watches the DOM to intelligently turn background scrolling on and off.

JSFiddle Demo.

Install

This assumes that StimulusJS and Bulma are already installed.

Add the stimulus-bulma-modal module:

$ yarn add stimulus-bulma-modal

or

$ npm install stimulus-bulma-modal

Basic Usage

First, register the controller with StimulusJS:

// application.js
import { Application } from 'stimulus';
import { BulmaModal } from 'stimulus-bulma-modal';

const application = Application.start();
application.register('modal', BulmaModal);

Next, you need to attach the controller to a Bulma modal. Because the controller operates within the modal, you'll need to add the is-active class somewhere in the DOM outside of the modal element.

<button onclick="openModal()">Open the modal from outside.</button>

<div data-controller="modal" class="modal">
  <div data-action="click->modal#close" class="modal-background"></div>
  <div class="modal-content">
    <div class="box has-text-centered">
      This is a great modal.
    </div>
  </div>
  <button data-action="click->modal#close" class="modal-close"></button>
</div>

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/stephendolan/stimulus-bulma-modal. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

This package is available as open source under the terms of the MIT License.

Keywords

FAQs

Package last updated on 12 May 2018

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