Skip to content

Commit

Permalink
docs(cssPrefix): update cssPrefix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mixed authored Nov 23, 2016
1 parent bb11878 commit 2763f90
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ The following is a list of methods extended from jQuery.
* persist() method: Stores the current state of a webpage into a key in JSON.
- [API Documentation](http://naver.github.io/egjs/latest/doc/jQuery.html#persist)
- [Usage Examples](http://naver.github.io/egjs/demo/persist/), [Usage Examples (CodePen)](http://codepen.io/collection/XOLpog/)
* prefixCss() method: Enables to add CSS vendor prefixes when you use some jQuery version(1.4.3 ~ 1.7.x) that does not support them.
- [API Documentation](http://naver.github.io/egjs/latest/doc/jQuery.html#persist)
* prefixCss() method: Enables to add CSS vendor prefixes when you use some jQuery version(1.4.3 ~ 1.8.x) that does not support them.
- [API Documentation](http://naver.github.io/egjs/latest/doc/jQuery.html#cssPrefix)
- [Usage Examples](http://naver.github.io/egjs/demo/cssPrefix/)
* animate() method: A method extended from the jQuery animate() method. It supports CSS transform property and 3D acceleration.
- [API Documentation](http://naver.github.io/egjs/latest/doc/jQuery.html#animate)
Expand Down
8 changes: 4 additions & 4 deletions src/hook/cssPrefix.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ eg.module("cssPrefix", ["jQuery", document], function($, doc) {
"use strict";

/**
* Apply css prefix cssHooks
* @ko 자동으로 css prefix가 적용되지 않는 jQuery 1.4.3 ~ 1.8.x에서 css prefix을 자동으로 등록하는 cssHooks이다.
* Enables to add CSS vendor prefixes when you use some jQuery version(1.4.3 ~ 1.8.x) that does not support them.
* @ko css에 vender prefix를 자동으로 추가하는 cssHooks이다. 지원하지 않는 jQuery 1.4.3 ~ 1.8.x에서만 활성화 된다.
*
* @name jQuery#cssPrefix
* @method
*
* * @support {"ie": "10+", "ch" : "latest", "ff" : "latest", "sf" : "latest", "edge" : "latest", "ios" : "7+", "an" : "2.1+ (except 3.x)"}
* @support {"ie": "10+", "ch" : "latest", "ff" : "latest", "sf" : "latest", "edge" : "latest", "ios" : "7+", "an" : "2.1+ (except 3.x)"}
* @example
* $("#ID").css("transform", "translate('10px', '10px');
* $("#ID").css("Transform", "translate('10px', '10px');
Expand Down Expand Up @@ -78,4 +78,4 @@ eg.module("cssPrefix", ["jQuery", document], function($, doc) {
setCssHooks: setCssHooks
};

});
});

0 comments on commit 2763f90

Please sign in to comment.