[IMP] Improve code to fix issue in editing list for m2m field.

bzr revid: bth@tinyerp.com-20130215110927-eu4n0sk21czcymwp
This commit is contained in:
Bhumi Thakkar (Open ERP) 2013-02-15 16:39:27 +05:30
parent 5d31ed34d0
commit b7ce267cbc
1 changed files with 7 additions and 0 deletions

View File

@ -4094,6 +4094,13 @@ instance.web.form.FieldMany2ManyTags = instance.web.form.AbstractField.extend(in
focus: function () {
this.$text[0].focus();
},
set_dimensions: function (height, width) {
this._super(height, width);
this.$("textarea").css({
width: width,
minHeight: height
});
},
});
/**