Merge "Docs: Encode URL input to search box Bug: 26287939"
am: 634e4a2a39
* commit '634e4a2a39b32df838d750374ce390fa25f1710b':
Docs: Encode URL input to search box Bug: 26287939
This commit is contained in:
commit
e1e7d93cfe
1 changed files with 1 additions and 11 deletions
|
@ -2015,10 +2015,7 @@ $(window).hashchange( function(){
|
|||
});
|
||||
|
||||
function updateResultTitle(query) {
|
||||
$("#searchTitle").html("Results for <em>" + (query) + "</em>");
|
||||
// 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 <em>" + escapeHTML(query) + "</em>");
|
||||
$("#searchTitle").html("Results for <em>" + encodeURIComponent(query) + "</em>");
|
||||
}
|
||||
|
||||
// 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,"<")
|
||||
.replace(/>/g,">");
|
||||
}
|
||||
|
||||
|
||||
/* ######################################################## */
|
||||
/* ################# JAVADOC REFERENCE ################### */
|
||||
|
|
Loading…
Reference in a new issue