/*
* MyProjectNameHere <http://www.example.com>
* View JavaScript
*
* It is possible to load view specific JavaScript, this file is included among HTML resources
* by WWW_controller_view if it is detected and found for the view it loads. This file is
* loaded after other JavaScript files.
*
* @package View Controller
* @author DeveloperNameHere <email@example.com>
* @copyright Copyright (c) 2012, ProjectOwnerNameHere
* @license Unrestricted
* @tutorial /doc/pages/guide_view.htm
* @since 1.0.0
* @version 1.0.0
*/
function example(){
alert('works');
}
|