diff options
author | Sam Potts <sam@potts.es> | 2018-08-14 12:14:58 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-14 12:14:58 +1000 |
commit | 8fb8ae126013423c8990893f824e90fc76215028 (patch) | |
tree | 31a5a44364dd474dd076fa7aaef3f8db62a8506e /gulpfile.js | |
parent | eaeccd66ae6eda297a3eebac75fe542bed91d177 (diff) | |
parent | 90304369f444180597d5aa47ab622b663473a6a0 (diff) | |
download | plyr-8fb8ae126013423c8990893f824e90fc76215028.tar.lz plyr-8fb8ae126013423c8990893f824e90fc76215028.tar.xz plyr-8fb8ae126013423c8990893f824e90fc76215028.zip |
Merge pull request #1163 from sampotts/develop
Fix bug with nodeList for play buttons
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js index 270e2a71..18781797 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -44,7 +44,7 @@ const paths = { // Source paths src: { sass: path.join(root, 'src/sass/**/*.scss'), - js: path.join(root, 'src/js/**/*'), + js: path.join(root, 'src/js/**/*.js'), sprite: path.join(root, 'src/sprite/*.svg'), }, @@ -55,7 +55,7 @@ const paths = { // Source paths src: { sass: path.join(root, 'demo/src/sass/**/*.scss'), - js: path.join(root, 'demo/src/js/**/*'), + js: path.join(root, 'demo/src/js/**/*.js'), }, // Output paths |