Why not adopt me?
This distribution is up for adoption!
If you're interested then please contact the PAUSE module admins via
email.
NAME
HTML::Widget::Plugin::JS - a JavaScript variable declaration emitter
VERSION
version 0.003
js_var
js_vars
These are two names for the same widget. Given a hashref, they will produce JavaScript code to assign the data in the hashref.
In otherwords, this widget:
$fac->js_vars({
foo => { a => 1, b => 2 },
bar => [ 4, 2, 3 ],
});
...will be rendered something like this:
var foo = { a: 1, b: 2 };
var bar = [ 1, 2, 3 ];
js_anon
This widget converts a given data structure to an anonymous JavaScript structure. This basically just provides a widget factory interface to Data::JavaScript::Anon.
AUTHOR
This code was written by Ricardo SIGNES.
COPYRIGHT
This code is copyright (c) 2008, Ricardo SIGNES. It is free software, available under the same terms as perl itself.