You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ gulp.task('ngdocs', [], function () {
39
39
});
40
40
```
41
41
42
-
To use a different angularjs version pass `angular` and `angular-animate` files in scripts.
42
+
To use a different AngularJS version pass `angular` and `angular-animate` files in scripts.
43
43
44
44
```js
45
45
gulp.task('ngdocs', [], function () {
@@ -75,7 +75,7 @@ If you would like to divide your documentation into different sections, use `gul
75
75
```js
76
76
gulp.task('ngdocs', [], function () {
77
77
var gulpDocs =require('gulp-ngdocs');
78
-
var options = {
78
+
var options = {
79
79
//options
80
80
}
81
81
returngulpDocs.sections({
@@ -104,7 +104,7 @@ A doc comment looks like this:
104
104
* @description
105
105
* Resize textarea automatically to the size of its text content.
106
106
*
107
-
* **Note:** ie<9 needs pollyfill for window.getComputedStyle
107
+
* **Note:** ie<9 needs polyfill for window.getComputedStyle
108
108
*
109
109
* @example
110
110
<example module="rfx">
@@ -125,13 +125,13 @@ or take a look at the [AngularJS source code](https://github.com/angular/angular
125
125
##Options
126
126
127
127
####scripts
128
-
Set addional custom js files are loaded to the app. This allows the live examples to use custom directives, services, etc. The documentation app works with angular.js 1.2+ and 1.3+. If you include your own angular.js include angular-animate.js too.
128
+
Set additional custom JS files are loaded to the app. This allows the live examples to use custom directives, services, etc. The documentation app works with AngularJS 1.2+ and 1.3+. If you include a different version of AngularJS, make sure to include angular-animate.js as well.
129
129
130
130
Possible values:
131
131
132
-
-['path/to/file.js'] file will be copied into the docs, into a `js` folder
133
-
-['http://example.com/file.js', 'https://example.com/file.js', '//example.com/file.js'] reference remote files (eg from a CDN)
134
-
-['../app.js'] reference file relative to the dest folder
132
+
-`['path/to/file.js']` file will be copied into the docs, into a `js` folder
133
+
-`['http://example.com/file.js', 'https://example.com/file.js', '//example.com/file.js']` reference remote files (eg from a CDN)
134
+
-`['../app.js']` reference file relative to the dest folder
0 commit comments