css workaround to nowrap buttons in position absolute mode

This commit is contained in:
vitalets
2012-11-27 00:37:57 +04:00
parent 396775bf8c
commit 1e757b833f
3 changed files with 24 additions and 18 deletions

@ -23,7 +23,7 @@ Editableform is linked with one of input types, e.g. 'text' or 'select'.
//create input of specified type
if(typeof $.fn.editableform.types[this.options.type] === 'function') {
TypeConstructor = $.fn.editableform.types[this.options.type];
typeOptions = $.fn.editableform.utils.sliceObj(this.options, Object.keys(TypeConstructor.defaults));
typeOptions = $.fn.editableform.utils.sliceObj(this.options, $.fn.editableform.utils.objectKeys(TypeConstructor.defaults));
this.input = new TypeConstructor(typeOptions);
} else {
$.error('Unknown type: '+ this.options.type);