Angular-stack冻结中的工具提示



我已经使用角绑带 角动画创建了几个工具提示(角运动)。最初,他们从那时起就在工作。但是,当迅速悬停在任何工具尖端上时,它们会冻结并卡在左上角。

nav(id="menubarContainer")
    ul
        li(bs-tooltip="tooltip.home"  data-placement="bottom")
            i(class="fa fa-home fa-2x" ui-sref="home")
        li(bs-tooltip="tooltip.create" data-placement="bottom-left")
            i(class="fa fa-plus fa-2x")
        li(bs-tooltip="tooltip.settings" data-placement="bottom-left")
            i(class="fa fa-cog fa-2x")
        li(bs-tooltip="tooltip.help" data-placement="bottom-left")
            i(class="fa fa-question-circle fa-2x")

铬鞋这个错误:uck offult typeError:无法阅读无角度生物的属性"长度"。JS:290

这是:

 function extractElementNode(element) {
      for(var i = 0; i < element.length; i++) { //here it cant read length of null!
        var elm = element[i];
        if(elm.nodeType == ELEMENT_NODE) {
          return elm;
        }
      }
    }

有人有任何类似问题吗?

这似乎是一个回归错误。您需要返回到Angular和Nganimate版本的1.2.13版。尚无错误修复。对不起:(

有关更多详细信息,您可以观看此问题。

最新更新