Skip to content

Commit

Permalink
Don't browserify Eager install
Browse files Browse the repository at this point in the history
  • Loading branch information
zackbloom committed Oct 8, 2015
1 parent 91318bb commit 4ed8a3d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PACE",
"main": "pace.js",
"version": "0.7.3",
"version": "0.7.4",
"homepage": "http://github.hubspot.com/pace/docs/welcome",
"authors": [
"Zack Bloom <zackbloom@gmail.com>",
Expand Down
10 changes: 3 additions & 7 deletions install.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,16 @@
{
"type": "script",
"if": "options.advancedOptions.disableOnPushState",
"contents": "window.paceOptions = window.paceOptions || {}; window.paceOptions.restartOnPushState = false;",
"moduleType": "global"
"contents": "window.paceOptions = window.paceOptions || {}; window.paceOptions.restartOnPushState = false;"
},
{
"type": "script",
"if": "options.advancedOptions.disableOnAJAX",
"contents": "window.paceOptions = window.paceOptions || {}; window.paceOptions.restartOnRequestAfter = false;",
"moduleType": "global"
"contents": "window.paceOptions = window.paceOptions || {}; window.paceOptions.restartOnRequestAfter = false;"
},
{
"type": "script",
"src": "./pace.js",
"moduleType": "global",
"exports": ["Pace"]
"src": "./pace.js"
},
{
"type": "style",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pace",
"version": "0.7.3",
"version": "0.7.4",
"description": "Automatic page load progress bar",
"authors": [
"Zack Bloom <zackbloom@gmail.com>",
Expand Down

2 comments on commit 4ed8a3d

@adamschwartz
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting, why were we browserifying in the first place?

@zackbloom
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Honestly? No idea.

Please sign in to comment.