File: Controls.pm

package info (click to toggle)
libhtml-prototype-perl 1.48-5
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 512 kB
  • ctags: 118
  • sloc: perl: 608; makefile: 4
file content (39 lines) | stat: -rw-r--r-- 807 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
39
package HTML::Prototype::Controls;

use strict;

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

1;

=head1 NAME

HTML::Prototype::Controls - script.aculo.us controls library, embedded in perl

=head1 SYNOPSIS

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

=head1 DESCRIPTION

This is the script.aculo.us controls 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>

controls.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