From 1ac46a15ea4336f0aed89cacc3f5ff65dc95566d Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Tue, 30 Sep 2014 17:40:31 +0900 Subject: [PATCH] Cleanup --- client/dist/index.html | 177 +++++++++++++++++++++++++++++++++++++++++ client/gulpfile.js | 30 +++---- client/html/index.html | 164 ++++++++++++++++++++++++++++++++++++++ client/index.html | 13 +++ 4 files changed, 369 insertions(+), 15 deletions(-) create mode 100644 client/dist/index.html create mode 100644 client/html/index.html diff --git a/client/dist/index.html b/client/dist/index.html new file mode 100644 index 0000000..1b1ae17 --- /dev/null +++ b/client/dist/index.html @@ -0,0 +1,177 @@ + + + + Reactive Search + + + + + + + + + +
+ + + + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ +
+
+
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + diff --git a/client/gulpfile.js b/client/gulpfile.js index 912b329..a3c56d5 100644 --- a/client/gulpfile.js +++ b/client/gulpfile.js @@ -8,28 +8,28 @@ var uglify = require('gulp-uglify'); var paths = { js: [ - 'bower_components/underscore/underscore.js', - 'bower_components/handlebars/handlebars.min.js', - 'bower_components/jquery/dist/jquery.min.js', - 'bower_components/fabric/dist/fabric.min.js', - 'bower_components/tinycolor/tinycolor.js', - 'bower_components/bootstrap/dist/js/bootstrap.min.js', - 'bower_components/bootstrap-select/dist/js/bootstrap-select.min.js', - 'js/*.js' + './bower_components/underscore/underscore.js', + './bower_components/handlebars/handlebars.min.js', + './bower_components/jquery/dist/jquery.min.js', + './bower_components/fabric/dist/fabric.min.js', + './bower_components/tinycolor/tinycolor.js', + './bower_components/bootstrap/dist/js/bootstrap.min.js', + './bower_components/bootstrap-select/dist/js/bootstrap-select.min.js', + './js/*.js' ], css: [ - 'bower_components/bootstrap/dist/css/bootstrap.min.css', - 'bower_components/bootstrap/dist/css/bootstrap-theme.min.css', - 'bower_components/bootstrap-select/dist/css/bootstrap-select.min.css', - 'css/*.css' + './bower_components/bootstrap/dist/css/bootstrap.min.css', + './bower_components/bootstrap/dist/css/bootstrap-theme.min.css', + './bower_components/bootstrap-select/dist/css/bootstrap-select.min.css', + './css/*.css' ], html: [ - 'index.html' + './html/*.html' ] }; gulp.task('lint', function() { - return gulp.src('js/*.js') + return gulp.src('./js/*.js') .pipe(jshint()) .pipe(jshint.reporter('default')); }); @@ -52,7 +52,7 @@ gulp.task('pages', function() { var sources = gulp.src(paths.js.concat(paths.css), { read: false }); return gulp.src(paths.html) .pipe(inject(sources)) - .pipe(gulp.dest('dist')); + .pipe(gulp.dest('./')); }); gulp.task('default', ['lint', 'scripts', 'styles', 'pages']); diff --git a/client/html/index.html b/client/html/index.html new file mode 100644 index 0000000..923804d --- /dev/null +++ b/client/html/index.html @@ -0,0 +1,164 @@ + + + + Reactive Search + + + + + +
+ + + + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ +
+
+
+ + + + + + + + + + + + +
+ + + + diff --git a/client/index.html b/client/index.html index 923804d..1b1ae17 100644 --- a/client/index.html +++ b/client/index.html @@ -4,6 +4,10 @@ Reactive Search + + + + @@ -159,6 +163,15 @@ + + + + + + + + +