This repository was archived by the owner on May 29, 2019. It is now read-only.
This repository was archived by the owner on May 29, 2019. It is now read-only.
Reopen the popover, it's scope has changed #1191
Closed
Description
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);
}
}