First Time: click the button, open the popover, the scope is right:  2nd Time: reopen the popover, the scope become the page's scope:  The snapshots is snap at http://angular-ui.github.io/bootstrap/#/popover I test it at local browse: ``` function showTooltipBind() { // add a log console.log('show: ', tooltip.scope()) if (scope.tt_popupDelay) { popupTimeout = $timeout(show, scope.tt_popupDelay); } else { scope.$apply(show); } } ``` The output is: 
First Time: click the button, open the popover, the scope is right:

2nd Time: reopen the popover, the scope become the page's scope:

The snapshots is snap at http://angular-ui.github.io/bootstrap/#/popover
I test it at local browse:
The output is:
