| Summary: | Folder view page isn't scrollable after page load | ||
|---|---|---|---|
| Product: | [ECD] Orion | Reporter: | Chris McGee <cbmcgee> |
| Component: | Client | Assignee: | Project Inbox <orion.client-inbox> |
| Status: | RESOLVED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 4.0 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Whiteboard: | |||
|
Description
Chris McGee
This fix to inputManager.js (around line 486) seems to fix the problem:
// EXISTING CODE HERE:
if (!isDir) {
editor.setInput(title, null, contents);
this._unsavedChanges = [];
this.processParameters(input);
}
// FIX IS HERE:
else {
// In the case of the directory make sure to set focus to
// the main div so that users can scroll immediately and tab
// through the contents (tables, etc.)
var tabIndex = editor._domNode.getAttribute("tabindex");
if (!tabIndex || tabIndex === "") {
editor._domNode.setAttribute("tabindex", "0");
}
editor._domNode.focus();
}
Closing as part of a mass clean up of inactive bugs. Please reopen if this problem still occurs or is relevant to you. For more details see: https://dev.eclipse.org/mhonarc/lists/orion-dev/msg03444.html |