var mobileKeyWords = new Array('iPhone', 'iPod', 'BlackBerry', 'Android', 'Windows CE', 'SAMSUNG');
for (var word in mobileKeyWords){
if (navigator.userAgent.match(mobileKeyWords[word]) != null){
location.href = " ";
break;
}
}
Device별 접속정보 예시
  • iPhone
    • Mozilla/5.0 (iPhone; U; CPU iPhone OS x_x ~~)
  • Andrioid
    • Mozilla/5.0 (Linux; U; Android x.x-update1; ko-kr;~~)
  • PC (Web)
    • Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; ~~)


반응형

'Programming > JavaScript' 카테고리의 다른 글

버튼 클릭시 인증번호 확인 후 페이지 이동  (0) 2017.03.19

Sync branch

원격에서 변경된 repository 정보를 로컬에도 반영
  • 삭제된 repository를 동기화 하거나 할 때 유용
$ git remote prune origin
반응형

'Programming > Git' 카테고리의 다른 글

[Log] 로그 확인 옵션들  (0) 2016.12.11
[Push] 강제 푸시  (0) 2016.12.11
[Color] 출력물에 색 입히기  (0) 2016.08.21

Git 명령어 출력물에 색 입히기

아래 config 옵션을 추가해주면 git status나 git diff 등을 할때 흑백의 텍스트가 아니라 빨간색, 녹색 등의 색상을 입힌 출력결과를 표시해준다
git config --global color.branch auto
git config --global color.diff auto
git config --global color.interactive auto
git config --global color.status auto
적용한 색상을 다시 되돌리고 싶으면 auto 부분을 false로 변경하면 됨.

Git diff 에 색상 넣기

$ diff old new | colordiff
or
$ colordiff old new
반응형

'Programming > Git' 카테고리의 다른 글

[Log] 로그 확인 옵션들  (0) 2016.12.11
[Push] 강제 푸시  (0) 2016.12.11
[Sync] 원격-로컬 브랜치 동기화  (0) 2016.08.21