This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;(function(domains) | |
| { | |
| var entries = window.performance.getEntries(); | |
| var result = { | |
| total: 0, | |
| count: 0, | |
| domains: {} | |
| }; | |
| for (var entry = 0; entry < entries.length; entry++) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;(function(p){ | |
| if (!p) return; | |
| function stash(strMethod) | |
| { | |
| p["__orig_" + strMethod] = p[strMethod]; | |
| } | |
| stash("getEntries"); | |
| stash("webkitClearResourceTimings"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(w){ | |
| if (!w || !w.performance) { | |
| return; | |
| } | |
| var clearResourceTimings = performance.clearResourceTimings || performance.webkitClearResourceTimings; | |
| if (clearResourceTimings) { | |
| BOOMR.subscribe("onbeacon", clearResourceTimings); | |
| } | |
| })(window); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var setResourceTimingBufferSize == window && window.performance && (performance.setResourceTimingBufferSize || performance.webkitSetResourceTimingBufferSize); | |
| if (setResourceTimingBufferSize) { | |
| setResourceTimingBufferSize(<size>); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function addVars() { | |
| BOOMR.addVar({ | |
| "UserId": SOASTA.UserId, | |
| "ClientId": SOASTA.ClientId, | |
| "GroupId": SOASTA.GroupId, | |
| "UniqueId": SOASTA.UniqueId | |
| }); | |
| } | |
| if (document.addEventListener) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /****************************************************************************** | |
| Copyright (c) 2014, Google Inc. | |
| All rights reserved. | |
| Redistribution and use in source and binary forms, with or without | |
| modification, are permitted provided that the following conditions are met: | |
| * Redistributions of source code must retain the above copyright notice, | |
| this list of conditions and the following disclaimer. | |
| * Redistributions in binary form must reproduce the above copyright notice, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| //https://developers.google.com/doubleclick-gpt/reference | |
| var slots = ["ad_bnr_atf_01", "ad_bnr_btf_02"], | |
| slotCount = window.performance && performance.mark ? slots.length : 0; | |
| var boomr_ready = false; | |
| BOOMR = window.BOOMR || {}; | |
| BOOMR.plugins = BOOMR.plugins || {}; | |
| BOOMR.plugins.GPT = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(w){ | |
| if (!w || !w.performance) { | |
| return; | |
| } | |
| var clearResourceTimings = w.performance.clearResourceTimings || w.performance.webkitClearResourceTimings; | |
| if (!clearResourceTimings) { | |
| return; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(w) { | |
| if (!w || !("performance" in w) || !w.performance || !performance.getEntriesByName) { | |
| return; | |
| } | |
| BOOMR = w.BOOMR || {}; | |
| BOOMR.plugins = BOOMR.plugins || {}; | |
| BOOMR.plugins.WaitForMark = { | |
| markFound: false, | |
| init: function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(w) { | |
| if (w != top) return | |
| w.addEventListener('load', function() { | |
| var iframe = document.createElement('iframe') | |
| iframe.style.display = 'none' | |
| iframe.src = location.href | |
| document.body.appendChild(iframe) | |
| iframe.addEventListener('load', function() { | |
| var outer = w.performance |
OlderNewer