honkster-jelly 0.8.9 → 0.8.10
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/generators/jelly/templates/javascripts/jelly.js +2 -2
- data/jelly.gemspec +1 -1
- metadata +1 -1
data/VERSION.yml
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* Jelly. a sweet unobtrusive javascript framework
|
3
3
|
* for jQuery and Rails
|
4
4
|
*
|
5
|
-
* version 0.8.
|
5
|
+
* version 0.8.10
|
6
6
|
*
|
7
7
|
* Copyright (c) 2009 Pivotal Labs
|
8
8
|
* Licensed under the MIT license.
|
@@ -41,7 +41,7 @@ $.extend(Jelly, {
|
|
41
41
|
var initReturnValue = component.init.apply(component, definitionOrComponent.arguments);
|
42
42
|
if (initReturnValue === false || initReturnValue === null) {
|
43
43
|
} else {
|
44
|
-
Jelly.Observers.pushIfObserver.call(this,
|
44
|
+
Jelly.Observers.pushIfObserver.call(this, initReturnValue || component);
|
45
45
|
}
|
46
46
|
} else {
|
47
47
|
Jelly.Observers.pushIfObserver.call(this, component);
|
data/jelly.gemspec
CHANGED