mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Update sitemap.html
사이트 메뉴 편집 > 바로가기 메뉴타입 URL 링크 부분에서 주소 입력은 제대로 잘 되고 작동도 잘 되지만 메뉴 수정에 들어가면 URL 링크 부분에 '&' 가 '&' 로 노출되어 확인 눌러 저장해 버리면 주소가 & 포함된 주소로 바뀌어 버리는 소소한 문제점이 있었습니다.
This commit is contained in:
parent
3e43ac505f
commit
77cf8dfa1c
1 changed files with 3 additions and 0 deletions
|
|
@ -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());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue