forked from bennadel/JavaScript-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
80 lines (54 loc) · 1.33 KB
/
index.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html ng-app="Demo">
<head>
<meta charset="utf-8" />
<title>
$scope.$evalAsync() vs. $timeout() In AngularJS
</title>
</head>
<body>
<h1>
$scope.$evalAsync() vs. $timeout() In AngularJS
</h1>
<p bn-timing>
Check the console!
</p>
<!-- Load scripts. -->
<script type="text/javascript" src="../../vendor/jquery/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="../../vendor/angularjs/angular-1.2.4.min.js"></script>
<script type="text/javascript">
// Create an application module for our demo.
var app = angular.module( "Demo", [] );
// -------------------------------------------------- //
// -------------------------------------------------- //
// Test the timing of the $timeout() and $evalAsync() functions.
app.directive(
"bnTiming",
function( $timeout ) {
// I bind the JavaScript events to the local scope.
function link( $scope, element, attributes ) {
$timeout(
function() {
console.log( "$timeout 1" );
}
);
$scope.$evalAsync(
function( $scope ) {
console.log( "$evalAsync" );
}
);
$timeout(
function() {
console.log( "$timeout 2" );
}
);
}
// Return the directive configuration.
return({
link: link
});
}
);
</script>
</body>
</html>