Skip to content

Commit

Permalink
fix(bug) #5964 convert MS into S for scripts timeout attr
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneHlushko committed Mar 18, 2018
1 parent 4428efe commit 422236f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/web/JsonpMainTemplatePlugin.js
Expand Up @@ -98,7 +98,7 @@ class JsonpMainTemplatePlugin {
? `script.type = ${JSON.stringify(jsonpScriptType)};`
: "",
"script.charset = 'utf-8';",
`script.timeout = ${chunkLoadTimeout};`,
`script.timeout = ${chunkLoadTimeout / 1000};`,
crossOriginLoading
? `script.crossOrigin = ${JSON.stringify(crossOriginLoading)};`
: "",
Expand Down

0 comments on commit 422236f

Please sign in to comment.