The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

#############################################################################
## $Id: App.pm,v 1.1 2006/03/11 15:36:40 spadkins Exp $
#############################################################################

package JavaScript::App;
$VERSION = (q$Revision: 0 $ =~ /(\d[\d\.]*)/)[0];  # VERSION numbers generated by cvs

use strict;

=head1 NAME

JavaScript::App - A framework for building dynamic widgets or full applications in Javascript

=head1 SYNOPSIS

    see the documentation for "js-app" ("man js-app" or "perldoc js-app")

=head1 DESCRIPTION

"js-app" is a Javascript Application framework with which you can build
rich web applications and widgets embeddable in web pages. 

=head1 ACKNOWLEDGEMENTS

 * Author:  Stephen Adkins <stephen.adkins@officevision.com>
 * License: This is free software. The Javascript is licensed under the LGPL.

=head1 SEE ALSO

=cut

sub new {
    my $this = {};
    bless $this, "JavaScript::App";
    return($this);
}

1;