All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
0.15.6 (2020-04-28)
0.15.5 (2020-04-28)
0.15.4 (2020-04-28)
- Support for a globally configurable close timeout. Thanks decherneyge.
- Support for selector for
appendElement
. Thanks decherneyge. - Tooling version updates.
- Support for configuration of the
$locationChangeSuccess
event. Thanks smalbs.
- When a model is opened, we blur any active element. Thanks samx!
- Robustness for 'locationChangeEvent'.
- Robustness if the body element changs.
- Addded
bower
as a dev dependency. Runbower install
as annpm
postinstall
step, which makes initial setup on a clean machine slightly easier.
- Added support for using a custom parent scope for the controller scope, via the
scope
option. - Fixed a bug with controllerAs vs
controller as
.
- Removed calls to $q
catch
and replaced withthen(null, f)
so that the code works in IE8 (ECMAScript 3).
- Reverted changes below as they led to a bug with injected
$element
in modal controller. Added a test to protect against this case in the future.
- Merged
scope
option field. Updated readme.
- Fixed memory leak.
- Tidied up logic for cleanup.
- Fixed issue with vendor files.
- Moved from grunt to gulp.
- Updated the dependencies to use AngularJS 1.3 and upwards.
- The modal can now be added to any specific element in the DOM. If
unspecified, the modal is added to the
body
, as before. Thanks cointilt!