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


js-app documentation Contained in the js-app distribution.

Index


Code Index:

NAME

Top

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

SYNOPSIS

Top

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

DESCRIPTION

Top

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

ACKNOWLEDGEMENTS

Top

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

SEE ALSO

Top


js-app documentation Contained in the js-app distribution.

#############################################################################
## $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;

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

1;