Merge pull request #1153 from chef/dr/www-cleanup

fix minor website bugs
This commit is contained in:
Christoph Hartmann 2016-09-26 10:50:17 +02:00 committed by GitHub
commit 3072c4c91d
4 changed files with 4 additions and 2 deletions

View file

@ -116,6 +116,7 @@ end
task :www do
Rake::Task['www:clean'].invoke
Rake::Task['docs'].invoke
Rake::Task['www:build'].invoke
Rake::Task['www:release'].invoke
end

View file

@ -13,7 +13,7 @@ p If you're just getting started and want a quick introduction, then we recommen
a.button.try-demo href="#" Try InSpec demo
p Complete a short interactive demo
.columns.medium-6.center
a.button.try-demo href="docs/tutorials.html" Tutorials
a.button.try-demo href="tutorials" Tutorials
p Get your first hands-on experience
h2 Contributing

View file

@ -56,7 +56,7 @@ export class AppComponent implements OnInit {
}
ngAfterViewChecked() {
window.scrollTo( 0, document.body.scrollHeight );
// window.scrollTo( 0, document.body.scrollHeight );
}
// determines all commands that are not part of the tutorial

View file

@ -20,6 +20,7 @@ gulp.task('copy', function(){
gulp.src([
'*.png',
'app/**/*.{css,html,json}',
'app/responses/**/*',
'tutorial_files/**',
])
.pipe(gcopy('dist/'));