A Better Twitter Bootstrap Modal
31–40 of 73 posts
Re: A Better Twitter Bootstrap Modal
#32This is fantastic, I will definately be replacing my bootstrap modal code to use your library. This would be great if this got committed into bootstrap.
also see my other comment with regards to patching it for abs positioning
edit: current alternative is http://fancyapps.com/fancybox/
Re: A Better Twitter Bootstrap Modal
#33Upvote for Longcat :)
Re: A Better Twitter Bootstrap Modal
#34"Stackable" After checking out the live demo, I have no idea how "stacking" modals could make a good user interface.
Similarly for adding any foreign key item which could be multiple levels.
Django admin does this now by opening a "new" in a different window.
Re: A Better Twitter Bootstrap Modal
#35Re: A Better Twitter Bootstrap Modal
#36You know what's really awesome about this Modal? Unlike built-in one, this one works on iPhone without issues! Long window scrolls just fine. You just made me so happy :) Definitely using in something I am currently working on. Thanks!
Re: A Better Twitter Bootstrap Modal
#37Great job man. This needs to be added to stock bootstrap.
Re: A Better Twitter Bootstrap Modal
#38Re: A Better Twitter Bootstrap Modal
#39Definitely prefer this to the default modal, which blacks out the screen around it. I'll have to run some tests to see if any version of IE can handle this.
.modal-background { background:white; }
For me, Twitter Bootstrap's components have been the right tradeoff between flexibility and functionality. It doesn't have too many bells and whistles which makes it way easier to integrate into my own code.Maybe I just haven't run in to the use cases for Bootstrap's modal that causes the pain that this fixes, but most of these "features" seem like "it would be cool if..." product cruft.
Re: A Better Twitter Bootstrap Modal
#40Definitely prefer this to the default modal, which blacks out the screen around it. I'll have to run some tests to see if any version of IE can handle this.
Is it really worth installing an entirely new library just to achieve something a simple line of CSS could do? .modal-background { background:white; } For me, Twitter Bootstrap's components have been the right tradeoff between flexibility and functionality. It doesn't have too many bells and whistles which makes it way easier to integrate into my own code. Maybe I just haven't run in to the use cases for Bootstrap's…