Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: third_party/polymer/v0_8/components-chromium/iron-ajax/iron-ajax-extracted.js

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 1
2 2
3 Polymer({ 3 Polymer({
4 4
5 is: 'iron-ajax', 5 is: 'iron-ajax',
6 6
7 /** 7 /**
8 * Fired when a request is sent. 8 * Fired when a request is sent.
9 * 9 *
10 * @event request 10 * @event request
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 }, 354 },
355 355
356 discardRequest: function(request) { 356 discardRequest: function(request) {
357 var requestIndex = this.activeRequests.indexOf(request); 357 var requestIndex = this.activeRequests.indexOf(request);
358 358
359 if (requestIndex > 0) { 359 if (requestIndex > 0) {
360 this.activeRequests.splice(requestIndex, 1); 360 this.activeRequests.splice(requestIndex, 1);
361 } 361 }
362 } 362 }
363 }); 363 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698