-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Conversation
adds functionality for justifed tabs http://getbootstrap.com/components/#nav-justified
Closes #1240 If starting out collapsed, the expand animation would jump since the `initialAnimSkip` was still `true`.
Previously, there would be a case where the two transitions would run as the cancel would asynchronously invoke the reject handler of the transition which would set the currTransition to undefined even when the currTransition has been replaced with a new transition.
Badges in BS3 don't have contextual styles anymore. Closes #1290
…t were attached to the element
Hi, @foreachlt - let me tell you how I got that code for #1391... When using jQuery, then instead of our workarounds, using But Angular's jqLite does not have I searched for jQuery's
source: https://github.com/jquery/jquery/blob/master/src/manipulation.js#L464 You see? There is an undocumented second parameter for But, again, we are at AngularJS and should rely on jqLite... so, I went further on and checked out the Below we have jQuery's remove - look how the second parameter (which triggers "detach" behaviour) is used:
source: https://github.com/jquery/jquery/blob/master/src/manipulation.js#L359 And below we have jqLite's remove:
source: https://github.com/angular/angular.js/blob/master/src/jqLite.js#L799 Further investigation will reveal that That's why I think jqLite should add a I wanted to create a PR for a jqLite's |
@jbruni thanks for the explanation, it makes sense 👍 I hope your PR gets merged in Angular core. |
This should be fixed soon via #1455 . |
The Angular PR (angular/angular.js#5461) implementing the jqLite |
When hiding and showing the popover the bound events were removed from the element, because of the use of
remove()
. That means that if you have custom popover template which has some clickable dynamic content it only works on the first show of the popover. Therefore I put in place a simple fix. Let me know if this can be merged in or if not, how would you do it differently?Thanks a lot.