[view,bugfix][xs]: correct bug in query editor introduced by change in css in 07adbe2386.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user