add-to-homescreen
add-to-homescreen copied to clipboard
options is undefined
on line 230 you have the following: if ( options.debug && (typeof options.logging === "undefined") ) { ...
When I run my site in Chrome Mobile Emulation mode, this fails because "options" is undefined, yet you are trying to access properties of it as if it were an object.
My workaround is: if (options && options.debug && (typeof options.logging === "undefined") ) { ...
I used you work around for version 3.2.2. it is fixed now in master though