File: Effects.pm

package info (click to toggle)
libhtml-prototype-perl 1.48-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 508 kB
  • sloc: perl: 608; makefile: 4
file content (38 lines) | stat: -r--r--r-- 758 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package HTML::Prototype::Effects;

use strict;

open(DATA, '<', '/usr/share/javascript/scriptaculous/effects.js');

1;

=head1 NAME

HTML::Prototype::Effects - script.aculo.us effects library, embedded in perl

=head1 SYNOPSIS

    our $effects= do { package HTML::Prototype::Effects; local $/; <DATA> };

=head1 DESCRIPTION

This is the script.aculo.us effects library embedded in a perl __DATA__
section, for easy inclusion in L<HTML::Prototype>.

=head1 SEE ALSO

L<HTML::Prototype>, L<Catalyst::Plugin::Prototype>
L<http://prototype.conio.net/>

=head1 AUTHOR

Sebastian Riedel, C<sri@oook.de>

effects.js by Thomas Fuchs

=head1 LICENSE

This library is free software. You can redistribute it and/or modify it under
the same terms as perl itself.

=cut