Opened 10 years ago
Closed 10 years ago
#5289 closed Bug (fixed)
web client's inspector.js leaks function names into the DOM
Reported by: | jordan | Owned by: | jordan |
---|---|---|---|
Priority: | Normal | Milestone: | 2.77 |
Component: | Web Client | Version: | 2.76 |
Severity: | Minor | Keywords: | |
Cc: |
Description
Because of a missing comma.
index abdb724..d53b534 100644 --- a/web/javascript/inspector.js +++ b/web/javascript/inspector.js @@ -527,7 +527,7 @@ function Inspector(controller) { $(row).bind('wantedToggled',onFileWantedToggled); $(row).bind('priorityToggled',onFilePriorityToggled); $(row).bind('nameClicked',onNameClicked); - } + }, addSubtreeToView = function (tor, parent, sub, i) { var key, div;
Change History (2)
comment:1 Changed 10 years ago by jordan
- Owner set to jordan
- Status changed from new to assigned
comment:2 Changed 10 years ago by jordan
- Resolution set to fixed
- Status changed from assigned to closed
Note: See
TracTickets for help on using
tickets.
r14004: fixed in trunk.
r14006: fixed in 2.7x.