govuk_frontend_toolkit
Advanced tools
Comparing version 6.0.0 to 6.0.1
@@ -0,1 +1,5 @@ | ||
# 6.0.1 | ||
- Fix a Javascript error in IE7 caused by trying to access a character within a string using array notation ([PR #407](https://github.com/alphagov/govuk_frontend_toolkit/pull/407)) | ||
# 6.0.0 | ||
@@ -2,0 +6,0 @@ |
@@ -49,3 +49,3 @@ ;(function (global) { | ||
return string.replace(/-([a-z])/g, function (g) { | ||
return g[1].toUpperCase() | ||
return g.charAt(1).toUpperCase() | ||
}) | ||
@@ -52,0 +52,0 @@ } |
{ | ||
"name": "govuk_frontend_toolkit", | ||
"version": "6.0.0", | ||
"version": "6.0.1", | ||
"description": "npm package for using the GOV.UK frontend toolkit", | ||
@@ -5,0 +5,0 @@ "repository": { |
481591