@@ -59,7 +59,7 @@ def self.expose(*methods)
59
59
# Bridged functions - we just expose all core jquery functions as ruby
60
60
# methods on this class.
61
61
expose :after , :before , :parent , :parents , :prepend , :prev , :remove
62
- expose :hide , :show , :toggle , :children , :blur , :closest , :data
62
+ expose :hide , :show , :toggle , :children , :blur , :closest
63
63
expose :focus , :find , :next , :siblings , :text , :trigger , :append
64
64
expose :height , :width , :serialize , :is , :filter , :last , :first
65
65
expose :wrap , :stop , :clone , :empty
@@ -182,6 +182,13 @@ def animate(params, &block)
182
182
}
183
183
end
184
184
185
+ def data ( *args )
186
+ %x{
187
+ var result = self.data.apply(self, args);
188
+ return result == null ? nil : result;
189
+ }
190
+ end
191
+
185
192
# Start a visual effect (e.g. fadeIn, fadeOut, …) passing its name.
186
193
# Underscored style is automatically converted (e.g. `effect(:fade_in)`).
187
194
# Also accepts additional arguments and a block for the finished callback.
0 commit comments