Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Fix jquery js path
Browse files Browse the repository at this point in the history
Due to migration, the jquery path was erroneous

Close #24
  • Loading branch information
Ben Einaudi committed Mar 21, 2018
1 parent b2c6d2b commit 8ba0e4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ app.use(bodyParser.urlencoded({ extended: false }));
app.use(express.static(path.join(__dirname, 'public')));
app.use(express.static(path.join(__dirname, path.join('node_modules', 'tether', 'dist'))));
app.use(express.static(path.join(__dirname, path.join('node_modules', 'boosted', 'dist'))));
app.use(express.static(path.join(__dirname, path.join('node_modules', 'jquery', 'dist','cdn'))));
app.use(express.static(path.join(__dirname, path.join('node_modules', 'jquery', 'dist'))));
app.use(express.static(path.join(__dirname, path.join('node_modules', 'jquery-file-download', 'src','Scripts'))));
app.use(express.static(path.join(__dirname, path.join('node_modules', 'clipboard', 'dist'))));

Expand Down

0 comments on commit 8ba0e4d

Please sign in to comment.