August 1, 2014
Tealium Universal Tag (utag.js)
- Fixed a bug with Publish Settings so that you may now enable both the Ready Wait Flag and Bundling Libs publish settings for the same profile.
- Fixed a bug in which enabling the Ready Wait Flag setting caused the utag.cfg.noview flag to reset to “false” if you had set it to “true.”
- Introducing the new configuration flag, Wait Timer (
utag_cfg_ovrd.waittimer
). Tags do not load until the DOM Ready signal goes out. With this flag set exactly how long after the DOM Ready signal the Tags wait before they load. Setting this flag exposes the load time of a webpage without including the load times of third-party vendor Tags. You set this value in milliseconds.
Here is an example of how to set the Wait Timer flag:
var utag_cfg_ovrd={};
utag_cfg_ovrd.waittimer=3000;
This code snippet delays the loading of all Tags until 3 seconds after the DOM Ready signal.