PHP Classes

File: resources/classes/class.example.js

Recommend this page to a friend!
  Classes of Kristo Vaher   Wave Framework   resources/classes/class.example.js   Download  
File: resources/classes/class.example.js
Role: Auxiliary data
Content type: text/plain
Description: Example class
Class: Wave Framework
MVC framework for building Web sites and APIs
Author: By
Last change: Update of resources/classes/class.example.js
Date: 2 months ago
Size: 608 bytes
 

Contents

Class file image Download
/* * MyProjectNameHere <http://www.example.com> * Example JavaScript Class * * It is possible to load JavaScript classes dynamically through JavaScript Factory. To load * this class, you need to create a Factory object and call getObject('example') call. * * @package Factory * @author DeveloperNameHere <email@example.com> * @copyright Copyright (c) 2012, ProjectOwnerNameHere * @license Unrestricted * @tutorial /doc/pages/guide_objects.htm * @since 1.0.0 * @version 1.0.0 */ function example(){ var myMessage='works'; this.test=function(){ alert(myMessage); } }