]> granicus.if.org Git - transmission/commitdiff
Make accidentally-public function names private
authorJordan Lee <jordan@transmissionbt.com>
Sun, 10 Feb 2013 18:32:40 +0000 (18:32 +0000)
committerJordan Lee <jordan@transmissionbt.com>
Sun, 10 Feb 2013 18:32:40 +0000 (18:32 +0000)
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>

web/javascript/inspector.js

index abdb7245e84633f89a5245b013381597f36b29d3..d53b53400f7a7e6e6a1cfab99004f18ba396f259 100644 (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;