Skip to content

Commit

Permalink
Fix feedback popover selector (oppia#4248)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlee12 authored Dec 23, 2017
1 parent 67210fa commit fb5499d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ oppia.directive('feedbackPopup', [
var popoverChildElt = null;
for (var i = 0; i < 10; i++) {
elt = elt.parent();
if (!angular.isUndefined(elt.attr('popover-template-popup'))) {
if (!angular.isUndefined(
elt.attr('uib-popover-template-popup'))) {
popoverChildElt = elt;
break;
}
Expand Down

0 comments on commit fb5499d

Please sign in to comment.