This repository was archived by the owner on May 29, 2019. It is now read-only.
File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ angular.module('ui.bootstrap.modal', ['ui.bootstrap.transition'])
354
354
modalScope . $close = modalInstance . close ;
355
355
modalScope . $dismiss = modalInstance . dismiss ;
356
356
357
- var ctrlLocals = { } ;
357
+ var ctrlInstance , ctrlLocals = { } ;
358
358
var resolveIter = 1 ;
359
359
360
360
//controllers
@@ -365,7 +365,10 @@ angular.module('ui.bootstrap.modal', ['ui.bootstrap.transition'])
365
365
ctrlLocals [ key ] = tplAndVars [ resolveIter ++ ] ;
366
366
} ) ;
367
367
368
- $controller ( modalOptions . controllerAs ? modalOptions . controller + ' as ' + modalOptions . controllerAs : modalOptions . controller , ctrlLocals ) ;
368
+ ctrlInstance = $controller ( modalOptions . controller , ctrlLocals ) ;
369
+ if ( modalOptions . controller ) {
370
+ modalScope [ modalOptions . controllerAs ] = ctrlInstance ;
371
+ }
369
372
}
370
373
371
374
$modalStack . open ( modalInstance , {
Original file line number Diff line number Diff line change @@ -313,6 +313,14 @@ describe('$modal', function () {
313
313
open ( { template : '<div>{{test.fromCtrl}} {{test.isModalInstance}}</div>' , controller : 'TestCtrl' , controllerAs : 'test' } ) ;
314
314
expect ( $document ) . toHaveModalOpenWithContent ( 'Content from ctrl true' , 'div' ) ;
315
315
} ) ;
316
+
317
+ it ( 'should allow defining in-place controller-as controllers' , function ( ) {
318
+ open ( { template : '<div>{{test.fromCtrl}} {{test.isModalInstance}}</div>' , controller : function ( $modalInstance ) {
319
+ this . fromCtrl = 'Content from ctrl' ;
320
+ this . isModalInstance = angular . isObject ( $modalInstance ) && angular . isFunction ( $modalInstance . close ) ;
321
+ } , controllerAs : 'test' } ) ;
322
+ expect ( $document ) . toHaveModalOpenWithContent ( 'Content from ctrl true' , 'div' ) ;
323
+ } ) ;
316
324
} ) ;
317
325
318
326
describe ( 'resolve' , function ( ) {
You can’t perform that action at this time.
0 commit comments