Hannes Widmoser
Hannes Widmoser
This pull request adds an attribute `animate` that needs to be set to `"true"` in order for the animations to be activated. This can be used as a work-around for...
This PR simplifies the toggle implementation by refactoring the toggle code into a separate function which can be called programmatically as well as from a click event. As far as...
Adds right-to-left support for ui layout containers. This will automatically work as long as the `ui-layout` element is a child of an element with a direction set to `rtl`. Fixes...
When using the latest version on master with a ui-layout that fills the whole screen, there are scrollbars spontaneously appearing/disappearing and also the ui-layout's overall size is not always right....
This PR removes $apply calls where possible to avoid bad performance impacts of ui-layout in large applications. Fixes #207. See this [plunker](http://plnkr.co/edit/bckg91yeZvV2ZJ5hdhEd) for a fixed version of the issue.
Sometimes the splitbar sticks to the mouse even if it is released. I have been able to isolate one case where this happens but I think there are other cases...
In complex applications the $rootScope digest cycle can take a considerable amount of time. The ui-layout triggers a $rootScope digest cycle on every mouseUp (always) and mouseMove (during resizing) thus...
Fixes issue #203.
Add support for dynamically changing size, minSize and maxSize expressions. It should be possible to use interpolation expressions for these attributes. For example: ``` ``` For an example see [this...
When moving the slider before resizing strange things happen. Consider the following [plunker](http://plnkr.co/edit/HuvMv0qxEwwwF6val8v7?p=preview): 1. Open the plunker in a separate window 2. Resize the window (make it smaller) 3. Move...