| 123456789101112131415161718192021222324252627282930313233 | 
							- /**
 -  *
 -  * @authors Eric Hsiao
 -  *
 -  */
 - 
 - templete = function (){
 - 
 - 	//private menbers
 - 
 - 
 - 	//private methods
 - 	function init () {
 -     console.log('templete is loaded.');
 - 	}
 - 
 - 	//constructor
 - 
 - 	{
 - 		$(document).ready(function() {
 - 			init();
 - 		});
 - 	}
 - 
 - 	//public
 - 
 - 	return {
 - 
 - 	};
 - };
 - 
 - var templete = new templete();
 
 
  |