2016년 6월 1일 수요일

cordova + jquerymobile 1.4.5 한글 앱이름 IOS 페이지 변환 이상

1. base : cordova
2. jquery mobile : 1.4.5
3. target : IOS

이상내용
  config.xml의 name을 한글로 했을경우
  $.mobile.changePage("#아이디")로 변경시
  IOS에서 경로 경로찾는중 한글 폴더 이상 발생


처리내용
  파일명 : jquery.mobile-1.4.5.js
  함수 : _findBaseWithDefault
  라인 : 5721
  변경내용 : // return closestBase || $.mobile.path.documentBase.hrefNoHash;
  return $.mobile.path.documentBase.hrefNoHash || closestBase;
  기타 :우선순위 변경으로 해결함. 다른부분에서 오류가 있는지 많은 테스트가 필요.