@@ -8,7 +8,7 @@ angular.module('ui.bootstrap.popover', ['ui.bootstrap.tooltip'])
88. directive ( 'uibPopoverTemplatePopup' , function ( ) {
99 return {
1010 replace : true ,
11- scope : { title : '@' , contentExp : '&' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' ,
11+ scope : { uibTitle : '@' , contentExp : '&' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' ,
1212 originScope : '&' } ,
1313 templateUrl : 'uib/template/popover/popover-template.html'
1414 } ;
@@ -23,7 +23,7 @@ angular.module('ui.bootstrap.popover', ['ui.bootstrap.tooltip'])
2323. directive ( 'uibPopoverHtmlPopup' , function ( ) {
2424 return {
2525 replace : true ,
26- scope : { contentExp : '&' , title : '@' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' } ,
26+ scope : { contentExp : '&' , uibTitle : '@' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' } ,
2727 templateUrl : 'uib/template/popover/popover-html.html'
2828 } ;
2929} )
@@ -37,7 +37,7 @@ angular.module('ui.bootstrap.popover', ['ui.bootstrap.tooltip'])
3737. directive ( 'uibPopoverPopup' , function ( ) {
3838 return {
3939 replace : true ,
40- scope : { title : '@' , content : '@' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' } ,
40+ scope : { uibTitle : '@' , content : '@' , placement : '@' , popupClass : '@' , animation : '&' , isOpen : '&' } ,
4141 templateUrl : 'uib/template/popover/popover.html'
4242 } ;
4343} )
0 commit comments