This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function isIE() { | |
| var o = [navigator.appName,navigator.userAgent]; | |
| return ((o[0] == 'Microsoft Internet Explorer') || ((o[0] == 'Netscape') && (new RegExp("Trident/.*rv:([0-9]{1,}[\.0-9]{0,})").exec(o[1]) != null))); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 원인은 www.test.com 에서 fm.test.com 로 domain이 틀려지기 때문에 IE 랑 FF에서 cross domain resource 참조를 못하여 발생한 것이고, | |
| 해결은 아파치 httpd.conf 에 mod_header.so 파일을 추가하고 Cross Origin Resource Sharing 설정을 넣어주어 잡았습니당. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| //<![CDATA[ | |
| ;function basicFnName(){ | |
| try{ | |
| }catch(e){ | |
| alert("basicFnName"+e); | |
| }; | |
| } | |
| //]]> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * jQuery UI Datepicker 1.8.7 | |
| * | |
| * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |
| * Dual licensed under the MIT or GPL Version 2 licenses. | |
| * http://jquery.org/license | |
| * | |
| * http://docs.jquery.com/UI/Datepicker | |
| * | |
| * Depends: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*========================================================================== | |
| HTML5 display definitions | |
| ==========================================================================*/ | |
| article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary {display:block;} | |
| audio,canvas,video {display:inline-block;} | |
| audio:not([controls]) {display:none; height:0;} | |
| [hidden] {display:none;} | |
| figure {margin:0;} | |
| button {border:0 none;padding:0;margin:0;background:transparent;cursor:pointer;} | |
| figcaption {height: 0; width: 0; font-size: 0; line-height: 0; margin: 0; padding: 0; overflow:hidden;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* !DStyle Mixin 0.4v */ | |
| /** | |
| * 일부 오타수정 | |
| * padding,margin영역 일부 mixin 삭제. | |
| */ | |
| /* variables */ | |
| @font-color:#333; | |
| @font-size:1em; | |
| @border-color:#ccc; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function tistoryCategoryJson(oId){ | |
| var o = {}; | |
| // 데이터 추출 | |
| function data(tg,dom){ | |
| tg.link = $(dom).find(">li>a").attr("href"); | |
| tg.cnt = $(dom).find(">li>a>span").text(); | |
| $(dom).find(">li>a>span").remove(); | |
| tg.title = $(dom).find(">li>a").text(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 글자수(바이트 체크) | |
| * @param oid : 글자를 받을 Textarea ID | |
| * @param tid : 바이트 체크된 값 리턴될 엘리먼트 ID | |
| */ | |
| function pubByteCheckTextarea(oid,tid){ | |
| $(oid).on("keyup",function(){ | |
| var byteTxt = ""; | |
| var byte = function(str){ | |
| var byteNum=0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * jQuery runQuery v0.9b - http://dstyle.raonnet.com/runquery_v2/ | |
| * Release Date : 2011/10/10 (Date-based Korea) | |
| * Last Modified : 2011/10/27 (Date-based Korea) | |
| * | |
| * Open source under the BSD License. | |
| * | |
| * jQuery 1.6.2 이상에서 정상적으로 동작합니다. | |
| * | |
| * 제작자 : 원용봉([email protected]) by REFLEXION Web Team. |