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
| <script> | |
| /** | |
| * Provides a fake analytics object that sends all calls to the parent window for processing | |
| */ | |
| var analytics = (function() { | |
| var eventQueue = []; | |
| // Send the events to the frame if it's ready. | |
| function flush(method, args) { | |
| while (eventQueue.length) { |
OlderNewer