[view,bugfix][xs]: correct bug in query editor introduced by change in css in 07adbe2386116f8ac8ca4c716344b3d6dc513354.
This commit is contained in:
parent
d60d97ffff
commit
28ab026ca1
@ -227,7 +227,7 @@ my.QueryEditor = Backbone.View.extend({
|
||||
e.preventDefault();
|
||||
var newFrom = parseInt(this.el.find('input[name="from"]').val());
|
||||
var newSize = parseInt(this.el.find('input[name="to"]').val()) - newFrom;
|
||||
var query = this.el.find('.text-query').val();
|
||||
var query = this.el.find('.text-query input').val();
|
||||
this.model.set({size: newSize, from: newFrom, q: query});
|
||||
},
|
||||
onPaginationUpdate: function(e) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user