You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Property keys are IdentifierName and IdentifierNames are allowed to be ReservedWords, however Identifiers are not. Platforms that throw are incorrectly implemented, but you're right here—this will throw in oldIE and Safari 5.x
public
is a keyword - therefor it causes error when using a compressor e.g. yuicompressor.Solution:
Enclose in doublequotes:
and access using
pluginFns["public"]
instead ofpluginFns.public
.Alternatively rename it.
The text was updated successfully, but these errors were encountered: