@@ -8,7 +8,7 @@ angular.module('ui.bootstrap.popover', ['ui.bootstrap.tooltip'])
8
8
. directive ( 'uibPopoverTemplatePopup' , function ( ) {
9
9
return {
10
10
replace : true ,
11
- scope : { title : '@' , contentExp : '&' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' ,
11
+ scope : { uibTitle : '@' , contentExp : '&' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' ,
12
12
originScope : '&' } ,
13
13
templateUrl : 'uib/template/popover/popover-template.html'
14
14
} ;
@@ -23,7 +23,7 @@ angular.module('ui.bootstrap.popover', ['ui.bootstrap.tooltip'])
23
23
. directive ( 'uibPopoverHtmlPopup' , function ( ) {
24
24
return {
25
25
replace : true ,
26
- scope : { contentExp : '&' , title : '@' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' } ,
26
+ scope : { contentExp : '&' , uibTitle : '@' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' } ,
27
27
templateUrl : 'uib/template/popover/popover-html.html'
28
28
} ;
29
29
} )
@@ -37,7 +37,7 @@ angular.module('ui.bootstrap.popover', ['ui.bootstrap.tooltip'])
37
37
. directive ( 'uibPopoverPopup' , function ( ) {
38
38
return {
39
39
replace : true ,
40
- scope : { title : '@' , content : '@' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' } ,
40
+ scope : { uibTitle : '@' , content : '@' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' } ,
41
41
templateUrl : 'uib/template/popover/popover.html'
42
42
} ;
43
43
} )
0 commit comments