UNPKG
@docapost-agility/mka
Version:
latest (2.0.10)
2.0.10
2.0.9
2.0.8
2.0.7
2.0.5
0.0.15
0.0.13
0.0.12
0.0.9
0.0.8
0.0.7
0.0.6
Mouse keyboard action
github.com/Docapost-Agility/mka
Docapost-Agility/mka
@docapost-agility/mka
/
docs
/
directivesAndModules
/
onFinishRender.js
13 lines
(12 loc)
•
325 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
app.
directive
(
'onFinishRender'
, function (
$timeout
) {
return
{ restrict:
'A'
, link:
function
(
scope, element, attr
)
{
if
(scope.
$last
===
true
) {
$timeout
(
function
(
)
{ scope.
$emit
(attr.onFinishRender); }); } } } });