Chrome Content Security Policy (CSP) & XSS http://ohgyun.com/542 최적화 도구 CSP 요구 사항https://support.google.com/360suite/optimize/answer/7388531?hl=ko https://developers.google.com/web/fundamentals/security/csp/ http://luckyyowu.tistory.com/360 XSS XSS 공격 동영상http://gudgud92.tistory.com/31 javascript & jQuery 2018.01.24
Angular의 ngFor를 사용할때 구분자 넣기 {{item}}{{isLast ? '' : ', '}} Using comma as a list separator in Angular 2 https://stackoverflow.com/questions/34053860/using-comma-as-a-list-separator-in-angular-2 ANgularJS 2.0+ 2017.08.02
keypress keydown keyup http://stackoverflow.com/questions/4843472/javascript-listener-keypress-doesnt-detect-backspace chrome에서는 keypress()가 delete detect하지 못함.web browser 마다 keypress의 detect 범위가 다름 Single keyclick events triggeredon Chromekeydown/keypress/keyup when browser registers a keyboard input (keypress is fired)keydown/keyup if no keyboard input (tested with alt, shift, backspace, arrow keys)keydown only for .. javascript & jQuery 2017.05.04
jquery의 focus와 click 이벤트가 충돌 할때 https://vnthf.github.io/blog/jquery-focusout%EA%B3%BCclick-event%EC%B6%A9%EB%8F%8C/ javascript & jQuery 2017.04.21
AngularJS에서 *가 의미하는 것 https://angular.io/docs/ts/latest/tutorial/toh-pt1.htmlhttps://angular.io/docs/ts/latest/guide/structural-directives.html#!#prefer-asterisk []는 template tag 안에서, 그 변수가 있을지 없을지 모르는 상태에서 사용*는 변수가 존재할때, The asterisk (*) prefixSurely you noticed the asterisk (*) prefix to the directive name and wondered why it is necessary and what it does.Here is *ngIf displaying the hero's name if hero exists.COPY.. ANgularJS 2.0+ 2017.03.24
Angular Release Breaking Changes https://github.com/angular/angular/blob/master/CHANGELOG.md 의 Breaking Changes를 Excel로 정리한 List 입니다. 첨부파일 확인하세요. Last Update : 2016-10-06 ANgularJS 2.0+ 2016.11.07
TS2355: A function whose declared type is neither 'void' nor 'any' must return a value. 오류 TS2355: A function whose declared type is neither 'void' nor 'any' must return a value. 오류 상황 에러난 부분들 아무것도 건드린적 없는데 값자기.. 오류 원인 아래 사이트를 참고해 보면return 값의 type이 명확하지 않아서 ts가 js로 변환되면서 생기는 오류인 듯하다. 오류 해결 http://codeinreview.com/184/not-all-code-paths-return-a-value-in-typescript/ 오류관리 2016.08.04