govuk_frontend_toolkit 6.0.0 → 6.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c691fea11a81b6e13b02691132d0ce0c5e844650
4
- data.tar.gz: ca6ab6ace0a2813e9426d2744603a5cabf366a8c
3
+ metadata.gz: 7970c3d101671f44edfe8cc220b6026485384d1b
4
+ data.tar.gz: bd34f54ba6c359dbc3e9360d86c28888ab58d41d
5
5
  SHA512:
6
- metadata.gz: 545412034afbd354d886e2d018c35cd6d69226106ac7108e980b8b6aeea46c5fdb7d60760c68b636d107e467a9194b30cc3cc6eecfe4d8041d9ae82693695d0d
7
- data.tar.gz: 248e6eee38422db39cb27c6e88becc1c6597721296de86494ee05d71bfef2bcd378d10ccde9388cb4aa9f6dc92c21370b0ca5c23b4a8d04050481c16f087b03c
6
+ metadata.gz: 19105a13ff6a9127a0350ff0a60c22e5252a64815f8753820ef75c20a1ee362023a0d4a438615df572c2af1c1bc4dc70a4f5b6749a22895eafdf73926367bcb3
7
+ data.tar.gz: e45aaf3eb22a5d199231d8ae922c7a6bb179dbc66c5ab2da3735c5eff56df72cfa0f2dafeb7cecb619d9c4245a7588da8a182f55f57f6689090d393c21b7f530
@@ -1,3 +1,7 @@
1
+ # 6.0.1
2
+
3
+ - 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))
4
+
1
5
  # 6.0.0
2
6
 
3
7
  - Breaking change: configure the GOV.UK Analytics tracker with `govukTrackerUrl` instead of `govukTrackerGifUrl` ([PR #405](https://github.com/alphagov/govuk_frontend_toolkit/pull/405))
@@ -1 +1 @@
1
- 6.0.0
1
+ 6.0.1
@@ -46,7 +46,7 @@
46
46
  // http://stackoverflow.com/questions/6660977/convert-hyphens-to-camel-case-camelcase
47
47
  function camelCase (string) {
48
48
  return string.replace(/-([a-z])/g, function (g) {
49
- return g[1].toUpperCase()
49
+ return g.charAt(1).toUpperCase()
50
50
  })
51
51
  }
52
52
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: govuk_frontend_toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Government Digital Service