comments for docs

This commit is contained in:
vitalets
2012-11-30 19:27:23 +04:00
parent a62afc9180
commit 8df731036a
3 changed files with 9 additions and 9 deletions

@ -359,12 +359,12 @@ Applied as jQuery method.
**/ **/
autohide: true, autohide: true,
/** /**
Action when user clicks outside the container. Can be <code>cancel|submit|ignore</code> Action when user clicks outside the container. Can be <code>cancel|submit|ignore</code>.
Setting <code>ignore</code> ignore allows to have several containers open. Setting <code>ignore</code> allows to have several containers open.
@property onblur @property onblur
@type string @type string
@default cancel @default 'cancel'
**/ **/
onblur: 'cancel' onblur: 'cancel'
}; };

@ -444,7 +444,7 @@ Editableform is linked with one of input types, e.g. 'text' or 'select'.
ajaxOptions: null, ajaxOptions: null,
/** /**
Wether to show buttons or not. Wether to show buttons or not.
Form without buttons can be submitted by Enter (depends on input), by onblur = 'submit' or manually (via submit api method) Form without buttons can be auto-submitted by input or by onblur = 'submit'.
@property showbuttons @property showbuttons
@type boolean @type boolean

@ -473,7 +473,7 @@ Makes editable any HTML element on the page. Applied as jQuery method.
$.fn.editable.defaults = { $.fn.editable.defaults = {
/** /**
Type of input. Can be <code>text|textarea|select|date</code> Type of input. Can be <code>text|textarea|select|date|checklist</code> and more
@property type @property type
@type string @type string
@ -535,7 +535,7 @@ Makes editable any HTML element on the page. Applied as jQuery method.
**/ **/
enablefocus: false, enablefocus: false,
/** /**
Initial value of input Initial value of input. Taken from <code>data-value</code> or element's text.
@property value @property value
@type mixed @type mixed