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'); self.description = self.options.element.options('description');
if (self.description) { if (self.description) {
$('<div>') $('<div>')
.addClass('OxFormDescription') .addClass('OxFormDescription OxSelectable')
.html(self.description) .html(self.description)
.appendTo(that); .appendTo(that);
} }
that.append(self.options.element); that.append(self.options.element);
self.$message = Ox.Element() self.$message = Ox.Element()
.addClass('OxFormMessage') .addClass('OxFormMessage OxSelectable')
.appendTo(that); .appendTo(that);
/*@ /*@