HubSpot / BuckyClient

Collect performance data from the client

Home Page:http://github.hubspot.com/bucky

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Extend and options merging

william-p opened this issue · comments

Hi,
options passed in DOM isn't merged with internal options.

A workaround:
https://github.com/HubSpot/BuckyClient/blob/master/bucky.js#L84

options = extend({}, defaults, tagOptions);

to

options = extend({}, tagOptions, defaults);

Thanks

Yep, this was fixed by e7e5836