make clear input button work
This commit is contained in:
parent
4ca5734a9d
commit
bed3e1ea70
2 changed files with 11 additions and 5 deletions
|
@ -738,6 +738,11 @@ Ox.Input = function(options, self) {
|
||||||
return that;
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
that.clearInput = function() {
|
||||||
|
clear();
|
||||||
|
return that;
|
||||||
|
}
|
||||||
|
|
||||||
that.focusInput = function(select) {
|
that.focusInput = function(select) {
|
||||||
select = Ox.isUndefined(select) ? true : select;
|
select = Ox.isUndefined(select) ? true : select;
|
||||||
self.$input.focus();
|
self.$input.focus();
|
||||||
|
|
|
@ -385,7 +385,7 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
tooltip: 'Previous [Shift+G]',
|
tooltip: 'Previous [Shift+G]',
|
||||||
type: 'image'
|
type: 'image'
|
||||||
})
|
})
|
||||||
.css({float: 'left', opacity: 0.25})
|
.css({float: 'left'})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
goToNextResult(-1);
|
goToNextResult(-1);
|
||||||
|
@ -399,7 +399,7 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
tooltip: 'Next [G]',
|
tooltip: 'Next [G]',
|
||||||
type: 'image'
|
type: 'image'
|
||||||
})
|
})
|
||||||
.css({float: 'left', opacity: 0.25})
|
.css({float: 'left'})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
goToNextResult(1);
|
goToNextResult(1);
|
||||||
|
@ -422,6 +422,9 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
},
|
},
|
||||||
blur: function() {
|
blur: function() {
|
||||||
self.inputHasFocus = false;
|
self.inputHasFocus = false;
|
||||||
|
},
|
||||||
|
submit: function() {
|
||||||
|
self.inputHasFocus = false;
|
||||||
submitFindInput();
|
submitFindInput();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -454,9 +457,7 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
self.$results.html('0');
|
self.$results.html('0');
|
||||||
self.$findInput
|
self.$findInput.clearInput();
|
||||||
.options({value: ''})
|
|
||||||
.focusInput();
|
|
||||||
self.results = [];
|
self.results = [];
|
||||||
self.$timeline && self.$timeline.options({
|
self.$timeline && self.$timeline.options({
|
||||||
results: self.results
|
results: self.results
|
||||||
|
|
Loading…
Reference in a new issue