Ox.FormItem: use 'OxSelectable' class

This commit is contained in:
rolux 2012-06-14 12:34:46 +02:00
parent 38e01c26ca
commit c22da1cfc5

View file

@ -23,13 +23,13 @@ Ox.FormItem = function(options, self) {
self.description = self.options.element.options('description');
if (self.description) {
$('<div>')
.addClass('OxFormDescription')
.addClass('OxFormDescription OxSelectable')
.html(self.description)
.appendTo(that);
}
that.append(self.options.element);
self.$message = Ox.Element()
.addClass('OxFormMessage')
.addClass('OxFormMessage OxSelectable')
.appendTo(that);
/*@