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
| /*========================================================================== | |
| 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
| /* | |
| * 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
| <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
| 원인은 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
| 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
| /* | |
| http://www.w3schools.com/cssref/playit.asp?filename=playcss_text-decoration&preval=line-through | |
| s : 취소선 이라는 의미(strikethrough text.) | |
| del : 삭제됨 이라는 의미 (delete) | |
| 만약 쇼핑몰에서 원가를 할인하여, 제공하는 경우, 원가 라는 개념은 남기 떄문에, del을 사용할순 없다. 그렇기 떄문에 CSS만으로 처리함. | |
| / | |
| div{text-decoration:line-through;} |
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 Extend dHeight : dstyle | |
| // 윈도우 높이와 문서의 높이를 비교하여 큰것을 리턴. | |
| (function($){$.windowHeight = function(){return (($(window).height()>$(document.body).height())?$(window).height():$(document.body).height());};})(jQuery); |
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 Extend relativeSet : dstyle | |
| //IE7을 위해 position z-index순서를 적용해줌. | |
| (function($){$.fn.relativeSet=function(){$(this).each(function(i){$(this).css({"position":"relative","z-index":(99999-i)});});};})(jQuery); |