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

Commit 4be1a76

Browse files
author
Parth Shah
committed
adding original nav images
1 parent 16cd3a5 commit 4be1a76

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

app/index.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ html
9898
script(src='../bower_components/angucomplete-alt/angucomplete-alt.js')
9999
script(src='../bower_components/angular-cookies/angular-cookies.js')
100100
script(src='../bower_components/angular-dropdowns/dist/angular-dropdowns.js')
101-
script(src='../bower_components/angular-filter/dist/angular-filter.js')
101+
script(src='../bower_components/angular-filter/dist/angular-filter.min.js')
102102
script(src='../bower_components/angular-img-fallback/angular.dcb-img-fallback.js')
103103
script(src='../bower_components/intro.js/intro.js')
104104
script(src='../bower_components/angular-intro.js/src/angular-intro.js')

app/topcoder.constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ angular.module("CONSTANTS", [])
33
.constant("CONSTANTS", {
44
"API_URL": "https://api.topcoder-dev.com/v3",
55
"API_URL_V2": "https://api.topcoder-dev.com/v2",
6-
"ASSET_PREFIX": "http://local.topcoder-dev.com:3000/",
6+
"ASSET_PREFIX": "",
77
"auth0Callback": "https://api.topcoder-dev.com/pub/callback.html",
88
"auth0Domain": "topcoder-dev.auth0.com",
99
"BLOG_LOCATION": "https://www.topcoder-dev.com/feed/?post_type=blog",

gulpfile.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,16 @@ gulp.task('images', ['clean-images'], function() {
8484
.pipe(gulp.dest(config.temp + 'images'));
8585
});
8686

87-
gulp.task('images-orig', ['build1'], function() {
87+
88+
gulp.task('images-orig-nav', ['build1'], function() {
8889
log('Copying original images');
90+
return gulp
91+
.src(config.assets + 'images/nav/**.*')
92+
.pipe(gulp.dest(config.build + 'images/nav'));
93+
});
8994

95+
gulp.task('images-orig', ['images-orig-nav'], function() {
96+
log('Copying original images');
9097
return gulp
9198
.src(config.assets + 'images/skills/**.*')
9299
.pipe(gulp.dest(config.build + 'images/skills'));

0 commit comments

Comments
 (0)