diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 199df4c..491fa51 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,10 +4,6 @@
-
-
-
-
@@ -117,7 +113,7 @@
-
+
@@ -137,10 +133,10 @@
-
+
-
+
@@ -151,17 +147,17 @@
-
+
-
+
-
+
@@ -192,10 +188,7 @@
-
-
-
-
+
@@ -281,15 +274,15 @@
-
-
+
+
@@ -363,7 +356,25 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -644,7 +655,13 @@
1458047741619
-
+
+ 1458048034591
+
+
+ 1458048034591
+
+
@@ -755,6 +772,7 @@
+
@@ -1023,17 +1041,6 @@
-
-
-
-
-
-
-
-
-
-
-
@@ -1042,14 +1049,6 @@
-
-
-
-
-
-
-
-
@@ -1058,17 +1057,9 @@
-
-
-
-
-
-
-
-
-
+
@@ -1106,5 +1097,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/gulpfile.js b/gulpfile.js
index d79510e..99ca46f 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -28,7 +28,7 @@ gulp.task('scripts', function() {
.pipe(concat('app.js'))
/*.pipe(gulp.dest('dist/js'))*/
/*.pipe(rename({suffix: '.min'}))*/
- .pipe(uglify())
+ .pipe(uglify({mangle: false}))
/*.pipe(concat('app.js'))*/
.pipe(gulp.dest('dist/js'))
.pipe(notify({ message: 'Scripts task complete' }));
@@ -37,6 +37,7 @@ gulp.task('scripts', function() {
gulp.task('vendor', function() {
return gulp.src(['html/libs/microevent.js','html/js/moment.min.js','html/js/ejs_production.js','html/js/jquery.unveil.js'])
.pipe(concat('vendor.js'))
+ .pipe(uglify({mangle: false}))
.pipe(gulp.dest('dist/js'))
.pipe(notify({ message: 'Scripts task complete' }));
});