Ox.FormItem: use 'OxSelectable' class
This commit is contained in:
parent
38e01c26ca
commit
c22da1cfc5
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
/*@
|
||||
|
|
Loading…
Reference in a new issue