Skip to content

Commit

Permalink
fix(fixed path to npm main): fixed path to npm main
Browse files Browse the repository at this point in the history
  • Loading branch information
jchartrand committed Mar 7, 2017
1 parent d39ec47 commit 20fda00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cwrc-public-entity-dialogs",
"version": "0.0.0-development",
"description": "Dialogs for the CWRC-Writer that lookup people, places, organizations, and publications in public authority files.",
"main": "index.js",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jchartrand/CWRC-PublicEntityDialogs.git"
Expand Down
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
window.jQuery = window.$ = require('jquery');
if (!window.$) {
window.jQuery = window.$ = require('jquery');
}
require('bootstrap');
let typeahead = require('corejs-typeahead/index.js');
typeahead.loadjQueryPlugin();
Expand Down

0 comments on commit 20fda00

Please sign in to comment.