We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef5c874 commit 76cb53fCopy full SHA for 76cb53f
src/ngSanitize/sanitize.js
@@ -4,6 +4,25 @@
4
* @ngdoc overview
5
* @name ngSanitize
6
* @description
7
+ *
8
+ * The `ngSanitize` module provides functionality to sanitize HTML.
9
10
+ * # Installation
11
+ * As a separate module, it must be loaded after Angular core is loaded; otherwise, an 'Uncaught Error:
12
+ * No module: ngSanitize' runtime error will occur.
13
14
+ * <pre>
15
+ * <script src="angular.js"></script>
16
+ * <script src="angular-sanitize.js"></script>
17
+ * </pre>
18
19
+ * # Usage
20
+ * To make sure the module is available to your application, declare it as a dependency of you application
21
+ * module.
22
23
24
+ * angular.module('app', ['ngSanitize']);
25
26
*/
27
28
/*
0 commit comments