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

Commit 998c61c

Browse files
chore(docs): copy the correct docs assets
The docs images had been duplicated in ``` docs/img/ ``` and ``` docs/app/assets/img ``` This commit fixes the gulp build to use the doc images from `docs/img` and removes the duplocates from `docs/app/assets/img` Closes #9655
1 parent 35e2a06 commit 998c61c

37 files changed

+2
-43
lines changed

Diff for: docs/app/assets/img/One_Way_Data_Binding.png

-31.6 KB
Binary file not shown.

Diff for: docs/app/assets/img/Two_Way_Data_Binding.png

-49.1 KB
Binary file not shown.

Diff for: docs/app/assets/img/angular_parts.png

-57.1 KB
Binary file not shown.

Diff for: docs/app/assets/img/form_data_flow.png

-54.1 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/concepts-databinding1.png

-39.1 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/concepts-databinding2.png

-65.1 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/concepts-directive.png

-48.4 KB
Binary file not shown.
-28.9 KB
Binary file not shown.
-62 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/concepts-runtime.png

-39.8 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/concepts-scope.png

-78.3 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/concepts-startup.png

-34 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/concepts-view.png

-51 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/di_sequence_final.png

-79.7 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/dom_scope_final.png

-123 KB
Binary file not shown.
-29 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/scenario_runner.png

-40.1 KB
Binary file not shown.

Diff for: docs/app/assets/img/guide/simple_scope_final.png

-117 KB
Binary file not shown.

Diff for: docs/app/assets/img/helloworld.png

-11.5 KB
Binary file not shown.

Diff for: docs/app/assets/img/helloworld_2way.png

-13.2 KB
Binary file not shown.

Diff for: docs/app/assets/img/tutorial/catalog_screen.png

-96.6 KB
Binary file not shown.

Diff for: docs/app/assets/img/tutorial/tutorial_00.png

-30.7 KB
Binary file not shown.

Diff for: docs/app/assets/img/tutorial/tutorial_00_final.png

-27 KB
Binary file not shown.

Diff for: docs/app/assets/img/tutorial/tutorial_02.png

-116 KB
Binary file not shown.

Diff for: docs/app/assets/img/tutorial/tutorial_03.png

-122 KB
Binary file not shown.

Diff for: docs/app/assets/img/tutorial/tutorial_04.png

-124 KB
Binary file not shown.

Diff for: docs/app/assets/img/tutorial/tutorial_07_final.png

-196 KB
Binary file not shown.
-209 KB
Binary file not shown.
-205 KB
Binary file not shown.

Diff for: docs/gulpfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ gulp.task('build-app', function() {
6363
gulp.task('assets', ['bower'], function() {
6464
var JS_EXT = /\.js$/;
6565
return merge(
66-
gulp.src([assets])
67-
.pipe(gulp.dest(outputFolder)),
66+
gulp.src(['img/**/*']).pipe(gulp.dest(outputFolder + '/img')),
67+
gulp.src([assets]).pipe(gulp.dest(outputFolder)),
6868
gulp.src([assets])
6969
.pipe(foreach(function(stream, file) {
7070
if (JS_EXT.test(file.relative)) {

Diff for: docs/img/AngularJS-small.png

-3.07 KB
Binary file not shown.

Diff for: docs/img/angularjs-for-header-only.svg

-41
This file was deleted.

Diff for: docs/img/bullet.png

-212 Bytes
Binary file not shown.

Diff for: docs/img/glyphicons-halflings-white.png

-4.25 KB
Binary file not shown.

Diff for: docs/img/glyphicons-halflings.png

-4.25 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)