comments for docs
This commit is contained in:
src/inputs
@ -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
|
||||||
|
Reference in New Issue
Block a user