Browse Source

Fix js path in home and gruntfile.js

master
Andrea Spacca 4 years ago
parent
commit
96e06a2276
3 changed files with 5040 additions and 44 deletions
  1. +2
    -2
      Gruntfile.js
  2. +5037
    -41
      bindata_gen.go
  3. +1
    -1
      src/includes/js.html

+ 2
- 2
Gruntfile.js View File

@@ -156,11 +156,11 @@ module.exports = function (grunt) {
}, },
{ {
dest: '.tmp/scripts/vendor/modernizr.js', dest: '.tmp/scripts/vendor/modernizr.js',
src: ['<%= yeoman.app %>/scripts/vendor/modernizr.js']
src: ['<%= yeoman.app %>/bower_components/modernizr/modernizr.js']
}, },
{ {
dest: '.tmp/scripts/vendor/video.js', dest: '.tmp/scripts/vendor/video.js',
src: ['<%= yeoman.app %>/scripts/vendor/video.js']
src: ['<%= yeoman.app %>/bower_components/videojs/dist/video.js']
} }
] ]
} }


+ 5037
- 41
bindata_gen.go
File diff suppressed because it is too large
View File


+ 1
- 1
src/includes/js.html View File

@@ -1,2 +1,2 @@
<script src="../scripts/main.js"></script>
<script src="./scripts/main.js"></script>



Loading…
Cancel
Save