- Initial release.
- Add own tipsy plugin to allow for tooltips.
- Change the scope of the .tipsy selector as it's inserted outside of the Glimpse div.
- Don't capture
being pressed when in combination with
cmd` - Support for Turbolinks (#14)
- Namespace the tooltips to the
.glimpse-tooltip
class name to not conflict with any application styles for.tooltip
. (#18)
- Added Peek::Views::View#parse_options that gets called within initialize for subclasses to use to parse their options.
- Introduced a new JS event
peek:render
that includes the request id and request payload data that is used to update the information in the bar. - Request information has moved from the
peek/results
partial to an AJAX request that happens on page load, and when PJAX/Turbolinks change pages. - Removed the need for
peek/results
partial. - Introduced a Redis and Memcache adapter for multi-server environments to store request payloads.
- Tooltips automatically repositions depending on where the Peek bar is.
- Fix bug with how
peek:render
was passing arguments around.
- Fix path to memcache adapter - #34 @grk
- Prevent namespace collision when using peek-dalli - #34 @grk
- Remove Redis dependency from Gemfile
- Don't access xhr object when not present in pjax:end
- Don't trigger
peek:update
event when the peek bar isn't present - #37 @dewski - Add
after_request
helper method for Peek::Views::View to help reset state
- Use
event.which
for normalization betweenevent.keyCode
andevent.charCode
- #38 @leongersing
- Support all Rails 3.x.x versions by not using
request.uuid
insteadenv
- #39 @bryanmikaelian
- Include the ControllerHelpers directly into
ActionController::Base
- #41 @lucasmazza