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

Unified Diff: appengine/swarming/ui/res/imp/tasklist/task-filters.html

Issue 2883493002: Add UI to mass delete dead bots (Closed)
Patch Set: Refresh list after Done is tapped Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: appengine/swarming/ui/res/imp/tasklist/task-filters.html
diff --git a/appengine/swarming/ui/res/imp/tasklist/task-filters.html b/appengine/swarming/ui/res/imp/tasklist/task-filters.html
index 1c109a59ba42ec6d0aaae97ee91d31df1a97c7e2..62689da739cd64236a41263e61082612c9b6de37 100644
--- a/appengine/swarming/ui/res/imp/tasklist/task-filters.html
+++ b/appengine/swarming/ui/res/imp/tasklist/task-filters.html
@@ -35,14 +35,14 @@
The events this element fires are to work around the fact that modal paper-dialog
elements need to be outside all other elements on the DOM.
- cancel-all: The user wishes to cancel all tags. The parent is expected to
+ cancel-all: The user wishes to cancel all tasks. The parent is expected to
show a paper-dialog and confirm the details. The event's details is
{tags: {Array:String}} of the tags of tasks that need be canceled.
prompt-date: The user wishes to change the filter date. The parent is expected to
show a paper-dialog that lets the user pick a date. The event's details
is {name: String, date: Date} naming the element to which the result will
go and the starting date.
- cancel-all: The user wishes to change the filter time. The parent is expected to
+ prompt-time: The user wishes to change the filter time. The parent is expected to
show a paper-dialog that lets the user pick a time. The event's details
is {name: String, date: Date} naming the element to which the result will
go and the starting date.
@@ -435,33 +435,33 @@
sk.errorMessage("You can't batch cancel everything. Specify some tags to filter by first.", 8000);
return;
}
- this.fire('cancel-all',{tags:this.query_params.tags})
+ this.fire("cancel-all",{tags:this.query_params.tags});
},
_promptEndDate: function(e) {
if (!this._use_now) {
- this._promptDate(_parseTS(this._end_ts), 'end');
+ this._promptDate(_parseTS(this._end_ts), "end");
}
},
_promptStartDate: function(e) {
- this._promptDate(_parseTS(this._start_ts), 'start');
+ this._promptDate(_parseTS(this._start_ts), "start");
},
_promptDate: function(date, name) {
- this.fire('prompt-date',{date:date, name:name})
+ this.fire("prompt-date",{date:date, name:name});
},
_promptEndTime: function(e) {
if (!this._use_now) {
- this._promptTime(_parseTS(this._end_ts), 'end');
+ this._promptTime(_parseTS(this._end_ts), "end");
}
},
_promptStartTime: function(e) {
- this._promptTime(_parseTS(this._start_ts), 'start');
+ this._promptTime(_parseTS(this._start_ts), "start");
},
_promptTime: function(date, name) {
- this.fire('prompt-time',{date:date, name:name})
+ this.fire("prompt-time",{date:date, name:name});
},
_setEndTS: function(ts) {

Powered by Google App Engine
This is Rietveld 408576698