meteor-bootboxjs
meteor-bootboxjs copied to clipboard
A meteor smart package for the bootstrap bootboxjs plugin
thanks for packaging bootboxjs for meteor, Would be appreciated it if a specific open source license for this package is added, here is the popular MIT License Template. http://choosealicense.com/ thanks!
I would like to use form popup in form popup (2 level). I work fine, but when i close the second form, the first form can not scroll.
Here's how I'm getting around it for now without me having to deal with giving you a pull request with a complete fix: https://gist.github.com/1ba557e380008a0050f1
It would be great to have reactive buttons for custom dialogs, example: ``` bootbox.dialog({ title: 'Share your thoughts...', message: '', buttons: { success: { label: Session.get('someKey'), className: "btn-success", callback: function...
Weird, out of nowhere, I'm unable to click on the backdrop to dismiss the modal. I'm still using the 4.4.0 package. Nothing in my code with regards to bootbox has...
The bootboxjs library uses jQuery for manipulating the DOM: https://github.com/TimHeckel/meteor-bootboxjs/blob/v4.3.0/lib/bootbox.js#L700 **But shouldn't meteor users avoid manipulating the DOM by jQuery directly and rather use Blaze methods & templates?** That's why...
Pl example for me (how to use?).
be great to see the bootboxjs examples implemented for meteor... consider it a feature request...
I've added a method `bootbox.templateDialog(options)` which lets you create modals from meteor templates. I think it would be a great addition to the bootbox package. I'm open to suggestions on...