Skip to content

Commit

Permalink
Fixed character encoding in "see more" link #42
Browse files Browse the repository at this point in the history
  • Loading branch information
Saisuma004 committed Sep 15, 2016
1 parent 7f882bf commit 7648217
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion catalog/main/homeBody.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<%@taglib uri="http://www.esri.com/tags-gpt" prefix="gpt"%>
<%@page import="com.esri.gpt.framework.util.Val"%>
<%@page import="com.esri.gpt.framework.util.Val"%>
<%
String responseBody = "";
Expand Down Expand Up @@ -368,6 +368,7 @@ $(document).ready(function(){
}
}
function executeSearchAction(searchText){
searchText=decodeURIComponent(searchText);
var textEle=document.getElementById('hpFrmSearch:itxFilterKeywordText');
var startEle=document.getElementById('hpFrmSearch:start');
var maxEle=document.getElementById('hpFrmSearch:max');
Expand Down

0 comments on commit 7648217

Please sign in to comment.