Update sitemap.html

사이트 메뉴 편집 > 바로가기 메뉴타입 URL 링크 부분에서
주소 입력은 제대로 잘 되고 작동도 잘 되지만 메뉴 수정에 들어가면 URL 링크 부분에 '&' 가 '&' 로 노출되어 확인 눌러 저장해 버리면 주소가 & 포함된 주소로 바뀌어 버리는 소소한 문제점이 있었습니다.
This commit is contained in:
푸시아 2013-11-16 00:14:17 +09:00
parent 3e43ac505f
commit 77cf8dfa1c

View file

@ -1881,6 +1881,9 @@ jQuery(function($){
showMenuSelector($(this).find('._menuSelector_menuTreeContainer'), htInfo.url);
}else{
// URL shortcut
var htInfo_url = htInfo.url;
htInfo_url = htInfo_url.replace(/&/g, '&');
htInfo.url = htInfo_url;
$(this).find('a[href="#fix_linkUrl"]').click();
$(this).find('._url_link').val($('<div />').text(htInfo.url).text());