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:
parent
1585c51125
commit
f5b45c1497
3 changed files with 6 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue