1
0
Fork 0
mirror of https://github.com/kbparagua/paloma synced 2023-03-27 23:21:17 -04:00

Update changelog.md and gemspec

This commit is contained in:
kbparagua 2014-06-07 19:29:11 +08:00
parent 4b97b778db
commit 786a7876f0
3 changed files with 11 additions and 4 deletions

View file

@ -1,5 +1,12 @@
# Changelog
## Version 4.1.0
* Support for Turbolinks.
* `Paloma.executeHook()` to manually run the hook from the DOM.
* Paloma hook will be appended using all `render` calls, except for calls that has the following keys `[:json, :js, :xml, :file]`.
* Restore `Paloma.engine.start()` to start processing queued request.
## Version 4.0.0
* https://github.com/kbparagua/paloma/issues/26 - Paloma requests are not saved on `session`.
* https://github.com/kbparagua/paloma/issues/26 - Chaining with redirect is removed.

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'paloma'
s.version = '4.0.0'
s.version = '4.1.0'
s.summary = "Provides an easy way to execute page-specific javascript for Rails."
s.description = "Page-specific javascript for Rails done right"
s.authors = ['Karl Paragua']

View file

@ -17,9 +17,9 @@
//= require_tree .
$(document).on('page:restore', function(){
Paloma.executeHook();
});
// $(document).on('page:restore', function(){
// Paloma.executeHook();
// });
//