123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /**
- *
- * @authors Eric Hsiao
- *
- */
-
- simplePage = function (){
-
- //private menbers
-
- //private methods
- function init () {
- console.log('simplePage is loaded.');
-
-
- }
-
- function intoPage() {
- if(currentPage != undefined) currentPage.leavePage();
- }
-
- function leavePage() {
-
- }
-
- //constructor
- {
- $(document).ready(function() {
- init();
- });
- }
-
- //public
-
- return {
- intoPage : function () {
- intoPage();
- },
- leavePage : function () {
- leavePage();
- }
- };
- };
-
- var simplePage = new simplePage();
|