Commit 6c7224c7 by Torkel Ödegaard Committed by GitHub

InfoPopover: Fixes transclude undefined error (#17063)

parent 74a31bd9
......@@ -8,7 +8,7 @@ export function infoPopover() {
restrict: 'E',
template: '<i class="fa fa-info-circle"></i>',
transclude: true,
link: (scope: any, elem: any, attrs: any, transclude: any) => {
link: (scope: any, elem: any, attrs: any, ctrl: any, transclude: any) => {
const offset = attrs.offset || '0 -10px';
const position = attrs.position || 'right middle';
let classes = 'drop-help drop-hide-out-of-bounds';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment