FF complains about dead code afte return, comment out
This commit is contained in:
parent
0a9c30d1dc
commit
6cf7083665
2 changed files with 3 additions and 1 deletions
|
@ -125,7 +125,7 @@ Ox.FormElementGroup = function(options, self) {
|
||||||
: values;
|
: values;
|
||||||
} else {
|
} else {
|
||||||
return that.options({value: arguments[0]});
|
return that.options({value: arguments[0]});
|
||||||
return that;
|
//return that;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -781,9 +781,11 @@ Ox.Input = function(options, self) {
|
||||||
function deselectMenu() {
|
function deselectMenu() {
|
||||||
return;
|
return;
|
||||||
//Ox.Log('Form', 'deselectMenu')
|
//Ox.Log('Form', 'deselectMenu')
|
||||||
|
/*
|
||||||
self.options.value = self.oldValue;
|
self.options.value = self.oldValue;
|
||||||
self.$input.val(self.options.value);
|
self.$input.val(self.options.value);
|
||||||
cursor(self.oldCursor);
|
cursor(self.oldCursor);
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
function focus() {
|
function focus() {
|
||||||
|
|
Loading…
Reference in a new issue