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

Commit

Permalink
chore(docs): copy the correct docs assets
Browse files Browse the repository at this point in the history
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
  • Loading branch information
petebacondarwin committed Oct 19, 2014
1 parent 35e2a06 commit 998c61c
Show file tree
Hide file tree
Showing 37 changed files with 2 additions and 43 deletions.
Binary file removed docs/app/assets/img/One_Way_Data_Binding.png
Binary file not shown.
Binary file removed docs/app/assets/img/Two_Way_Data_Binding.png
Binary file not shown.
Binary file removed docs/app/assets/img/angular_parts.png
Binary file not shown.
Binary file removed docs/app/assets/img/form_data_flow.png
Binary file not shown.
Binary file removed docs/app/assets/img/guide/concepts-databinding1.png
Binary file not shown.
Binary file removed docs/app/assets/img/guide/concepts-databinding2.png
Binary file not shown.
Binary file removed docs/app/assets/img/guide/concepts-directive.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/app/assets/img/guide/concepts-runtime.png
Binary file not shown.
Binary file removed docs/app/assets/img/guide/concepts-scope.png
Binary file not shown.
Binary file removed docs/app/assets/img/guide/concepts-startup.png
Binary file not shown.
Binary file removed docs/app/assets/img/guide/concepts-view.png
Binary file not shown.
Binary file removed docs/app/assets/img/guide/di_sequence_final.png
Binary file not shown.
Binary file removed docs/app/assets/img/guide/dom_scope_final.png
Binary file not shown.
Binary file not shown.
Binary file removed docs/app/assets/img/guide/scenario_runner.png
Binary file not shown.
Binary file removed docs/app/assets/img/guide/simple_scope_final.png
Binary file not shown.
Binary file removed docs/app/assets/img/helloworld.png
Binary file not shown.
Binary file removed docs/app/assets/img/helloworld_2way.png
Binary file not shown.
Binary file removed docs/app/assets/img/tutorial/catalog_screen.png
Binary file not shown.
Binary file removed docs/app/assets/img/tutorial/tutorial_00.png
Binary file not shown.
Binary file not shown.
Binary file removed docs/app/assets/img/tutorial/tutorial_02.png
Binary file not shown.
Binary file removed docs/app/assets/img/tutorial/tutorial_03.png
Binary file not shown.
Binary file removed docs/app/assets/img/tutorial/tutorial_04.png
Diff not rendered.
Binary file removed docs/app/assets/img/tutorial/tutorial_07_final.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
4 changes: 2 additions & 2 deletions docs/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ gulp.task('build-app', function() {
gulp.task('assets', ['bower'], function() {
var JS_EXT = /\.js$/;
return merge(
gulp.src([assets])
.pipe(gulp.dest(outputFolder)),
gulp.src(['img/**/*']).pipe(gulp.dest(outputFolder + '/img')),
gulp.src([assets]).pipe(gulp.dest(outputFolder)),
gulp.src([assets])
.pipe(foreach(function(stream, file) {
if (JS_EXT.test(file.relative)) {
Expand Down
Binary file removed docs/img/AngularJS-small.png
Diff not rendered.
41 changes: 0 additions & 41 deletions docs/img/angularjs-for-header-only.svg
Diff not rendered.
Binary file removed docs/img/bullet.png
Diff not rendered.
Binary file removed docs/img/glyphicons-halflings-white.png
Diff not rendered.
Binary file removed docs/img/glyphicons-halflings.png
Diff not rendered.

0 comments on commit 998c61c

Please sign in to comment.