comments for docs

This commit is contained in:
vitalets
2012-12-10 21:01:20 +04:00
parent e13a63e391
commit 1b6d5f8ab6
2 changed files with 18 additions and 10 deletions

@ -3,7 +3,7 @@ AbstractInput - base class for all editable inputs.
It defines interface to be implemented by any input type. It defines interface to be implemented by any input type.
To create your own input you can inherit from this class. To create your own input you can inherit from this class.
@class AbstractInput @class abstractinput
**/ **/
(function ($) { (function ($) {

@ -1,19 +1,23 @@
/** /**
HTML5 input types. HTML5 input types.
Following types are supported: Following types are supported:
- password
- email
- url
- tel
- number
- range
To check browser compatibility please see: * password
http://www.wufoo.com/html5/ * email
* url
* tel
* number
* range
Learn more about html5 inputs:
http://www.w3.org/wiki/HTML5_form_additions
To check browser compatibility please see:
https://developer.mozilla.org/en-US/docs/HTML/Element/Input
@class html5types @class html5types
@extends text @extends text
@final @final
@since 1.3.0
@example @example
<a href="#" id="email" data-type="email" data-pk="1">admin@example.com</a> <a href="#" id="email" data-type="email" data-pk="1">admin@example.com</a>
<script> <script>
@ -25,7 +29,11 @@ $(function(){
}); });
</script> </script>
**/ **/
/**
@property tpl
@default depends on type
**/
/* /*
Password Password