Skip to content

Commit d9a91ae

Browse files
committed
Do not use CDN for jQuery and Prototype.
We’re having issues in CI loading these files, so let’s load them locally instead of from a CDN to see if it fixes it.
1 parent 76d1446 commit d9a91ae

File tree

6 files changed

+6096
-5
lines changed

6 files changed

+6096
-5
lines changed

Gruntfile.coffee

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,21 +97,21 @@ This file is generated by `grunt build`, do not edit it by hand.
9797
jquery:
9898
options:
9999
vendor: [
100-
'https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'
100+
'public/docsupport/jquery-3.2.1.min.js'
101101
]
102102
specs: 'spec/public/jquery_specs.js'
103103
src: [ 'public/chosen.jquery.js' ]
104104
jquery_old:
105105
options:
106106
vendor: [
107-
'https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js'
107+
'public/docsupport/jquery-1.12.4.min.js'
108108
]
109109
specs: 'spec/public/jquery_specs.js'
110110
src: [ 'public/chosen.jquery.js' ]
111111
proto:
112112
options:
113113
vendor: [
114-
'https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js'
114+
'public/docsupport/prototype-1.7.0.0.js'
115115
'node_modules/simulant/dist/simulant.umd.js'
116116
]
117117
specs: 'spec/public/proto_specs.js'

public/docsupport/jquery-1.12.4.min.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/docsupport/jquery-3.2.1.min.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)