Namespaces

You can have multiple instances of Localytics on the same page. If you do so, be sure to namespace your calls.

ll('tagEvent.ns1', 'Some Event');
ll('tagEvent.ns2', 'Another Event');

Set app keys for each namespace.

ll('init.ns1', 'YOUR_APP_KEY', {} /* Options */);
ll('init.ns2', 'YOUR_APP_KEY', {} /* Options */);