diff --git a/tools/droiddoc/templates-sac/assets/js/docs.js b/tools/droiddoc/templates-sac/assets/js/docs.js
index 195c9e5f06..d0c12a8787 100644
--- a/tools/droiddoc/templates-sac/assets/js/docs.js
+++ b/tools/droiddoc/templates-sac/assets/js/docs.js
@@ -2015,10 +2015,7 @@ $(window).hashchange( function(){
});
function updateResultTitle(query) {
- $("#searchTitle").html("Results for " + (query) + "");
-// For some reason, the escapeHTML function wasn't working for me. TODO fix
-// this by copying in a comparable library function.
-// $("#searchTitle").html("Results for " + escapeHTML(query) + "");
+ $("#searchTitle").html("Results for " + encodeURIComponent(query) + "");
}
// forcefully regain key-up event control (previously jacked by search api)
@@ -2055,13 +2052,6 @@ function getQuery(hash) {
return queryParts[1];
}
-/* returns the given string with all HTML brackets converted to entities
- TODO: move this to the site's JS library */
-function escapeHTML(string) {
- return string.replace(//g,">");
-}
-
/* ######################################################## */
/* ################# JAVADOC REFERENCE ################### */