-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-controller.js
52 lines (46 loc) · 1.34 KB
/
app-controller.js
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
angular.module('sampleApp').
controller('SampleAppController', ['$timeout', '$scope', function($timeout, $scope) {
/** Example 1 **/
/**
* a. DOM manipulation method of changing button
*/
var btn = document.getElementById('trainingWheels');
btn.onclick = function() {
btn.innerHTML = 'Training wheels off!';
}
/**
* b. Angular method of changing button
*/
// this.clicked = false;
/** Example 2 **/
// this.bicycles = ['Google bike', 'Mountain Bike', 'Conference Bike'];
/**
* a. DOM manipulation method of adding dynamic elements
*/
var bikeDiv = document.getElementById('bicycles');
for(var i = 0; i < this.bicycles.length; i++)
{
var newDiv = document.createElement('div');
newDiv.innerHTML = this.bicycles[i];
bikeDiv.appendChild(newDiv);
}
/**
* b. Angular method: no controller code needed!
*/
/** Example 3 **/
/**
* a. DOM manipulation method (using JQuery) of removing elements
* Also demonstrates catching asynchronous actions
*/
$timeout(function() {
$('#remove').remove();
}, 3000);
/**
* b. Angular method for removal
*/
// $scope.removeTime = false;
// $timeout(function() {
// console.log('Running');
// $scope.removeTime = true;
// }, 3000);
}]);