Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
fix(modal): fix bindToController implementation
Browse files Browse the repository at this point in the history
- Correct the implementation of `bindToController` to match Angular with properties on `$scope` being bound on the controller

Closes #4054
Fixes #4051
  • Loading branch information
wesleycho committed Jul 31, 2015
1 parent 277b30c commit 811bf96
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/modal/docs/readme.md
Expand Up @@ -8,7 +8,7 @@ The `$modal` service has only one method: `open(options)` where available option
* `scope` - a scope instance to be used for the modal's content (actually the `$modal` service is going to create a child scope of a provided scope). Defaults to `$rootScope`
* `controller` - a controller for a modal instance - it can initialize scope used by modal. Accepts the "controller-as" syntax in the form 'SomeCtrl as myctrl'; can be injected with `$modalInstance`
* `controllerAs` - an alternative to the controller-as syntax, matching the API of directive definitions. Requires the `controller` option to be provided as well
* `bindToController` - when used with `controllerAs` & set to `true`, it will bind the controller properties onto the `$scope` directly
* `bindToController` - when used with `controllerAs` & set to `true`, it will bind the $scope properties onto the controller directly
* `resolve` - members that will be resolved and passed to the controller as locals; it is equivalent of the `resolve` property for AngularJS routes
* `animation` - set to false to disable animations on new modal/backdrop. Does not toggle animations for modals/backdrops that are already displayed.
* `backdrop` - controls presence of a backdrop. Allowed values: true (default), false (no backdrop), `'static'` - backdrop is present but modal window is not closed when clicking outside of the modal window.
Expand Down
6 changes: 3 additions & 3 deletions src/modal/modal.js
Expand Up @@ -538,10 +538,10 @@ angular.module('ui.bootstrap.modal', [])
ctrlInstance = $controller(modalOptions.controller, ctrlLocals);
if (modalOptions.controllerAs) {
if (modalOptions.bindToController) {
angular.extend(modalScope, ctrlInstance);
} else {
modalScope[modalOptions.controllerAs] = ctrlInstance;
angular.extend(ctrlInstance, modalScope);
}

modalScope[modalOptions.controllerAs] = ctrlInstance;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/modal/test/modal.spec.js
Expand Up @@ -480,7 +480,7 @@ describe('$modal', function () {
});

it('should allow usage of bindToController', function () {
open({template: '<div>{{fromCtrl}} {{isModalInstance}}</div>', controller: function($modalInstance) {
open({template: '<div>{{test.fromCtrl}} {{test.isModalInstance}}</div>', controller: function($modalInstance) {
this.fromCtrl = 'Content from ctrl';
this.isModalInstance = angular.isObject($modalInstance) && angular.isFunction($modalInstance.close);
}, controllerAs: 'test', bindToController: true});
Expand Down

0 comments on commit 811bf96

Please sign in to comment.