ng-repeat finish event

前端 未结 15 2847
盖世英雄少女心
盖世英雄少女心 2020-11-22 02:15

I want to call some jQuery function targeting div with table. That table is populated with ng-repeat.

When I call it on

$(document).r         


        
15条回答
  •  滥情空心
    2020-11-22 02:36

    I had to render formulas using MathJax after ng-repeat ends, none of the above answers solved my problem, so I made like below. It's not a nice solution, but worked for me...

    {{formula.string}}
    {{$last ? controller.render_formulas() : ""}}

提交回复
热议问题