File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7878 .install ()
7979 @previousErrorHandler = onerror
8080 window .onerror = @onWindowError .bind (@ )
81- CookieStore .onBlocked = @onCookieBlocked
81+ CookiesStore .onBlocked = @onCookieBlocked
8282 return
8383
8484 bootOne : ->
Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ class app.Settings
3333 analyticsConsent : false
3434
3535 constructor : ->
36- @store = new CookieStore
36+ @store = new CookiesStore
37+ console .log @store
3738 @cache = {}
3839
3940 get : (key ) ->
Original file line number Diff line number Diff line change 1- class @CookieStore
1+ class @CookiesStore
2+ # Intentionally called CookiesStore instead of CookieStore
3+ # Calling it CookieStore causes issues when the Experimental Web Platform features flag is enabled in Chrome
4+ # Related issue: https://github.com/freeCodeCamp/devdocs/issues/932
5+
26 INT = / ^ \d + $ /
37
48 @ onBlocked: ->
You can’t perform that action at this time.
0 commit comments