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

Bug Fix: Stupid type on _callback_hook.html.erb

This commit is contained in:
kbparagua 2013-05-23 00:44:57 +08:00
parent 1585c51125
commit f5b45c1497
3 changed files with 6 additions and 2 deletions

View file

@ -1,6 +1,10 @@
Changelog
=
Version 2.0.5
-
* Bug Fix: Stupid typo on `_callback_hook.html.erb`.
Version 2.0.4
-
* Bug Fix: Issue #4 - Passing json string on params.

View file

@ -15,7 +15,7 @@
callbacks = [];
// Remove any callback details if any
$('.callback-details[id!=" + id + "]').remove();
$('.callback-details[id!=' + id + ']').remove();
// Convert callbacks to javascript variable

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'paloma'
s.version = '2.0.4'
s.version = '2.0.5'
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", "Bia Esmero"]