Closed akarelas closed 9 years ago
Not necessary after all. All I had to do was add a 'dont-fade' class to that modal, and define THAT as trasition: none;
I think the object idea was good. What if i want a slide instead of a fade. I shouldnt have to define a css class to disable the fade AND and a class to add a new transition.
Yeah... this really seems like the wrong behavior to me. I think this is worth re-opening.
Actually a proper solution here is to override a template and add / remove all the css clases you need. Js code only controls triggering animations and not particular css classes used.
You don’t think that that solution is inversely proportional to the problem when you could just remove the fade class from the hard-coded HTML? -- Dean Sofer Sent with Airmail
On December 2, 2013 at 10:36:52 PM, Pawel Kozlowski (notifications@github.com) wrote:
Actually a proper solution here is to override a template and add / remove all the css clases you need. Js code only controls triggering animations and not particular css classes used.
— Reply to this email directly or view it on GitHub.
@ProLoser not sure what you mean by "hard-coded" by currently the fade
class (as well as the rest of markup) is externalized in bootstrap-specific template:
https://github.com/angular-ui/bootstrap/blob/master/template/modal/window.html
People are free to override this template (it is one liner!) to change default BS classes or even change the markup altogether to work with a different CSS framework. At the end of a day you need to put those default CSS classes somewhere so things work out of the box (still leaving full flexibility to users if they wish to change / override defaults).
they would be free to override it if there was an option to specify the template path. without that, you have to hard code the template in dev mode. in production the templates should be cached in a JS object or the $templateCache but its harder to test in dev mode if your apps templates arent in /templates/xyz.
@eddiemonge ok, I would really like to understand this one better as we are going to push more and more customizations via template overriding. The basic premise here is that we will never be able to support all the combination of config params people might think of and you can get very far with template customization.
What are the practical issues you are facing? What is your workflow? I guess you've read through this: https://github.com/angular-ui/bootstrap#customize-templates
Once again, I would like to understand better what practical issues people are facing as we want those templates to be easily customizable.
thats fine under ideal circumstances but it makes debugging harder if, lets say there are the following conditions:
There are I am sure many other circumstances where having a customized path woud be acceptable.
I don't know what would go into making the templateUrl adjustable but if I did a PR and knew it would land, I'd be inclined to look into it.
What I do in practice when overriding a template is to start with the <script>
tag approach which covers your point (1) and (2). When the initial design settles I'm moving it to separate files, add unit test and forget about them, loading in dev from templateCache since it is faster in practice.
Once again, I'm not saying this workflow is ideal but let's put things in perspective - we are talking about overriding widget templates which you do once in a while - I mean, it is not part of a daily work on an application.
Point (3) is harder as of today there is really no good mechanism in AngularJS to have alternative sets of templates. In any case a proper solution for this should come from AngularJS itself.
As far as PRs are concerned - those are always welcomed but can never have guarantee of being merged... I think AngularJS 1.2 brings dynamic templates / templateUrls which gives us additional flexibility. So go for it if you've got an idea if making things better but once again - can't give you any guarantees.
This is a PITA when you want multiple versions. On Dec 3, 2013 11:54 AM, "Pawel Kozlowski" notifications@github.com wrote:
What I do in practice when overriding a template is to start with the
Githubissues.Githubissues is a development platform for aggregating issues.
It's not possible to make modals appear instantaneously (except perhaps by redefining the 'fade' rules project-wide, which I don't want to do).
I read somewhere that what's needed is to remove the 'fade' class from the modal div.
Here's how this could be done: Allow the 'windowClass' property of the modal options object to be an object (e.g.
{ fade: false }
), and (if object) merge it with the default{ modal: true, fade: true }
and put it in the modal div'sng-class
.What do you think?