selector option ready, fixes

This commit is contained in:
vitalets
2013-01-17 13:52:37 +04:00
parent 9c7a2bab60
commit c2d8da0e11
4 changed files with 115 additions and 13 deletions

@ -11,7 +11,7 @@ Editableform is linked with one of input types, e.g. 'text', 'select' etc.
var EditableForm = function (div, options) {
this.options = $.extend({}, $.fn.editableform.defaults, options);
this.$div = $(div); //div, containing form. Not form tag! Not editable-element.
this.$div = $(div); //div, containing form. Not form tag. Not editable-element.
if(!this.options.scope) {
this.options.scope = this;
}