mirror of
https://github.com/transmission/transmission
synced 2025-02-20 13:16:53 +00:00
Make accidentally-public function names private
inspector.js' functions, beginning with addSubtreeToView(), are leaked into the DOM due to a missing comma at the end of the previous func. Bug #5289 <https://trac.transmissionbt.com/ticket/5289>
This commit is contained in:
parent
f70c4d88c7
commit
32fc85641a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue