amnesia7

Results 15 issues of amnesia7

I have a GET form that I'm entering `foo, bar` in a field. This generates a string of text (`foo%2C+bar`) for a parameter in the querystring. I'm then using ajax-enabled...

I'm getting the following html output: ``` « ... » ``` but with bootstrap 3 this is causing a huge gap around the pagination because of the nested elements with...

I saw this http://railsware.com/blog/2015/02/11/responsive-layout-tests-with-capybara-and-rspec/ and thought it might be a good addition to the rspec examples. I'm not entirely sure how it would be best applied because I couldn't actually...

I've looked through the specs in the repo but there doesn't appear to be anything along the lines of listing results that are searchable, sortable and offer paging. I was...

I have the following setup: `user has_many :projects` `user has_many :tasks, :through => :projects` `project has_many :tasks` My search needs to be an outer join of tasks so that it...

I am using the following filter: ``` indexes :lat_lng, type: 'geo_point', lat_lon: true filter :geo_bounding_box, lat_lng: { top_left: "#{bbox[:n]}, #{bbox[:w]}", bottom_right: "#{bbox[:s]}, #{bbox[:e]}", type: :indexed } ``` and if north...

I have the id field set as type "long" in my mapping: ``` mapping do indexes :id, type: 'long' indexes :name, type: 'string' end def to_indexed_json self.to_json end ``` but...

Is it possible for wiselinks to remember the scroll position for each page? I have an ajax application that has a list of results. When you click on a result...

If a product in the catalog is not found (ie its listed and then after the page has loaded for the user the product gets removed for whatever reason) I...

I have a function that needs to be run when I submit my wiselinks-form but before wiselinks actually processes the form fields and loads the new page. Before I added...