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
{{ message }}
This repository was archived by the owner on May 11, 2020. It is now read-only.
I'm using ng-map version 1.18.4 with angularjs version 1.6.9, when I set a map in my app its shows ok but breaks app, the error is the following?
When I inspect the library code in line 2684: var matches = attrValue.match(/([^\(]+)\(([^\)]*)\)/);
and the line 2685: var funcName = matches[1];
The problem is that are calling a property of a null variable, first I think that was an inittialization problem with the map, but all the examples I found worked ok, so I add this code to my ng-map library in line 2685: if (matches === null) { return; }
and voila problem solve, please tell me if there is a way to avoid overriding you're library or there is something I'm doing wrong, thanks in advance.