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:
Jordan Lee 2013-02-10 18:32:40 +00:00
parent f70c4d88c7
commit 32fc85641a
1 changed files with 1 additions and 1 deletions

View File

@ -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;