Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit 6c4503f

Browse files
author
Erin Altenhof-Long
committed
chore(exampleApp): remove jQuery use
1 parent 9f2b7a5 commit 6c4503f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example/app-controller.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ angular.module('sampleApp').
3737
* Also demonstrates catching asynchronous actions
3838
*/
3939
$timeout(function() {
40-
$('#remove').remove();
40+
var elt = document.getElementById('remove');
41+
elt.remove();
4142
}, 3000);
4243

4344
/**

0 commit comments

Comments
 (0)