아이패드에서 전체화면으로 "App" 스러운 화면구성을 위해서 ..... 주소창 제거하여 사용할 수 있는 방법입니다.
주요 키는 페이지 메타 데이터 태그 입력 해야하는것....
<meta name="apple-mobile-web-app-capable" content="yes"/>
Sharepoint master page 에 적용해 놓으면 상당히 유용할듯하네요.
http://www.ispringsolutions.com/articles/how-to-make-a-webpage-full-screen-on-an-ipad.html
update ----
첫화면은 App Mode 로 잘 뜨나 a link 를 통해 link로 이동할때 기본적으로 Safari가 동작함.
몇가지 검색 결과에 의하면 javascript 등을 통한 link 는 정상적이라고 함...
어떻게 그 많은 ..... 링크를....
다음 URL에 trick 이 있으니 참고.. jQuery를 통해서 A link 이벤트를 재정의 함.
$( document ).on(
"click",
"a",
function( event ){
// Stop the default behavior of the browser, which
// is to change the URL of the page.
event.preventDefault();
// Manually change the location of the page to stay in
// "Standalone" mode and change the URL at the same time.
location.href = $( event.target ).attr( "href" );
}
);
'IT 관련 이야기 > Sharepoint3' 카테고리의 다른 글
sharepoint Solution 배포할 때 dll 이 사용중이어서 오류발생 시 (0) | 2013.09.12 |
---|---|
Sharepoint SignOut 스크립트..... (0) | 2013.08.16 |
Sharepoint 개인화 기능 제거 (0) | 2013.07.05 |
Sharepoint 2013 / Office web apps 2013 CU 다운로드 사이트 (0) | 2013.06.27 |
Sharepoint 2013 Custom Style Sheet 주의 사항. (0) | 2013.05.17 |