Added contact-form

This commit is contained in:
Kasper Rynning-Tønnesen
2016-02-08 12:41:06 +01:00
parent 11ac0d75b2
commit f9f07e2d6d
10 changed files with 185 additions and 52 deletions

View File

@@ -26,7 +26,7 @@ gulp.task('embed', function () {
});
gulp.task('nochan', function () {
gulp.src(['static/js/nochan.js'])
gulp.src(['static/js/nochan.js', 'static/js/helpers.js'])
.pipe(uglify({
mangle: true,
compress: true,
@@ -50,6 +50,6 @@ gulp.task('remotecontroller', function () {
gulp.task('default', function(){
gulp.watch('static/js/*.js', ['js']);
gulp.watch('static/js/*.js', ['embed']);
gulp.watch('static/js/nochan.js', ['nochan']);
gulp.watch('static/js/*.js', ['nochan']);
gulp.watch('static/js/remotecontroller.js', ['remotecontroller']);
});