Home | History | Annotate | Download | only in basic

Lines Matching refs:pending_

28   this.pending_ = {};
142 this.pending_[id] = this.pending_[id] || {
159 * 'pending_' object, and stores it for later use.
167 this.pending_[id].openedInNewTab = true;
168 this.pending_[id].sourceUrl = data.sourceUrl;
169 this.pending_[id].start = data.timeStamp;
175 * 'pending_' object, and stores it for later use.
183 this.pending_[id].start = this.pending_[id].start || data.timeStamp;
192 * 'pending_' object, and stores it for later use.
199 if (!this.pending_[id]) {
205 this.pending_[id].transitionType = data.transitionType;
206 this.pending_[id].transitionQualifiers =
214 * 'pending_' object, combines it with the completed event's data, and pushes
222 if (!this.pending_[id]) {
229 duration: (data.timeStamp - this.pending_[id].start),
230 openedInNewWindow: this.pending_[id].openedInNewWindow,
231 sourceUrl: this.pending_[id].sourceUrl,
232 transitionQualifiers: this.pending_[id].transitionQualifiers,
233 transitionType: this.pending_[id].transitionType,
236 delete this.pending_[id];
243 * 'pending_' object, combines it with the completed event's data, and pushes
251 if (!this.pending_[id]) {
258 duration: (data.timeStamp - this.pending_[id].start),
259 openedInNewWindow: this.pending_[id].openedInNewWindow,
260 sourceUrl: this.pending_[id].sourceUrl,
261 transitionQualifiers: this.pending_[id].transitionQualifiers,
262 transitionType: this.pending_[id].transitionType,
265 delete this.pending_[id];