Closed
Bug 768414
Opened 13 years ago
Closed 10 years ago
GCLI should display progress with a spinner
Categories
(DevTools Graveyard :: Graphic Commandline and Toolbar, defect)
DevTools Graveyard
Graphic Commandline and Toolbar
Tracking
(Not tracked)
RESOLVED
WONTFIX
Future
People
(Reporter: jwalker, Unassigned)
References
Details
Much like the tick for 'pass but no output'?
Comment 1•13 years ago
|
||
Joe said that if we add the following to OutputPanel.prototype.update = function OP_update():
if (this.displayedOutput.data.completed) {
// Hide progress
} else {
// Show progress
}
Here is a complete(ish) progress implementation from elsewhere:
OutputView.prototype.changed = function(ev) {
var document = this.elems.rowout.ownerDocument;
var duration = this.outputData.duration != null ?
'completed in ' + (this.outputData.duration / 1000) + ' sec ' :
'';
duration = document.createTextNode(duration);
this.elems.duration.appendChild(duration);
if (this.outputData.completed) {
this.elems.prompt.classList.add('gcli-row-complete');
}
if (this.outputData.error) {
this.elems.prompt.classList.add('gcli-row-error');
}
this.outputData.toDom(this.elems.rowout);
// We need to see the output of the latest command entered
// Certain browsers have a bug such that scrollHeight is too small
// when content does not fill the client area of the element
var scrollHeight = Math.max(this.outputTerminal.element.scrollHeight,
this.outputTerminal.element.clientHeight);
this.outputTerminal.element.scrollTop =
scrollHeight - this.outputTerminal.element.clientHeight;
this.elems.throb.style.display = this.outputData.completed ? 'none' : 'block';
};
QA Contact: mratcliffe
Reporter | ||
Comment 3•13 years ago
|
||
Triage: Filter on the TRIAGE keyword.
Priority: P1 → P2
Target Milestone: Firefox 17 → Future
Reporter | ||
Comment 4•13 years ago
|
||
New component triage. Filter on "Lobster Thermidor aux crevettes with a Mornay sauce"
Component: Developer Tools: Console → Developer Tools: Graphic Commandline and Toolbar
Reporter | ||
Comment 5•11 years ago
|
||
Resetting priorities because these P* levels are very out of date.
Sorry for the bug spam. Filter on Lobster Thermidor
Priority: P2 → --
Reporter | ||
Comment 6•10 years ago
|
||
Triage. Filter on Lobster Thermidor.
Nice idea, but no need to keep on file.
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → WONTFIX
Updated•7 years ago
|
Product: Firefox → DevTools
Updated•7 years ago
|
Product: DevTools → DevTools Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•