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
In some cases global.Placeholders is undefined, this is specially the case with IE11 (don't ask me why, I couldn't tell). Therefore the following snippet will fail:
if ( !global.Placeholders.nativeSupport ) {
This willl work: if ( !global.Placeholders || !global.Placeholders.nativeSupport ) {
The text was updated successfully, but these errors were encountered:
In some cases global.Placeholders is undefined, this is specially the case with IE11 (don't ask me why, I couldn't tell). Therefore the following snippet will fail:
if ( !global.Placeholders.nativeSupport ) {
This willl work:
if ( !global.Placeholders || !global.Placeholders.nativeSupport ) {
The text was updated successfully, but these errors were encountered: