/*
* MyProjectNameHere <http://www.example.com>
* Example JavaScript Library
*
* It is possible to load JavaScript libraries dynamically through JavaScript Factory. To load
* this library, you need to create a Factory object and call loadLibrary('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(){
alert('works');
}
|