url param for testing with different version jquery

This commit is contained in:
vitalets
2012-12-06 13:02:36 +04:00
parent a33c337567
commit 9d7b75d3d5
10 changed files with 50 additions and 11598 deletions

@ -43,10 +43,6 @@
innerHide: function () {
this.$form.hide(this.options.anim, $.proxy(function() {
this.$element.show();
//return focus on element
if (this.options.enablefocus) {
this.$element.focus();
}
}, this));
},
@ -57,8 +53,7 @@
//defaults
$.fn.editableContainer.defaults = $.extend({}, $.fn.editableContainer.defaults, {
anim: 'fast',
enablefocus: false
anim: 'fast'
});

@ -264,11 +264,6 @@ Makes editable any HTML element on the page. Applied as jQuery method.
if(this.container) {
this.container.hide();
}
//return focus on element
if (this.options.enablefocus && this.options.toggle === 'click') {
this.$element.focus();
}
},
/**
@ -543,15 +538,6 @@ Makes editable any HTML element on the page. Applied as jQuery method.
**/
autotext: 'auto',
/**
Whether to return focus on element after form is closed.
This allows fully keyboard input.
@property enablefocus
@type boolean
@default false
**/
enablefocus: false,
/**
Initial value of input. Taken from <code>data-value</code> or element's text.
@property value