분류 전체보기 577

jQuery plugin 개발용 템플릿

jQuery plugin개발을 위한 손쉬운 방법이 있어 공유 합니다. 아래와 같은 형태로 작업을 하면 기존의 방법보다 훨씬 편한것 같습니다. 아래 부분이 키포인트 같아서 발춰해봅니다. $.fn[pluginName] = function(options) { // Iterate through each DOM element and return it return this.each(function() { // prevent multiple instantiations if (!$.data(this, 'plugin_' + pluginName)) { $.data(this, 'plugin_' + pluginName, new Plugin(this, options)); } }); }; Plugin의 접근을 $(p1).data..

프로그램/script 2015.09.24

ios apiserver http오류 App Transport Security has blocked

iOS9 이후 https로 api서버로 연결하지 않으면 아래와같은 에러가 올라 옵니다. App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file. 이럴경우 아래와 info.plist xml 파일에 아래와 같이 exception domain을 추가 해서 에러를 피할수 있다. ref : http://stackoverflow.com/questions/31254725/transport-security-has-blocked-a-cleartext-http NSAppTransp..

프로그램/iphone 2015.09.22