Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * All global and core class objects.
- *
- * viCore: Core methods
- * viPortal: viPortal methods
- * viPage: Page methods
- *
- * @copyright 2010, viPortal
- * @class viPortal
- */
- var viPortal = {
- /**
- * Debug mode?
- */
- debugMode: false,
- /**
- * Base context URL for the project.
- */
- strBaseUrl: '/',
- /**
- * Base context URL for javascript files.
- */
- strBaseUrlJs: '/system/modules/viPortal/html/j/',
- /**
- * Initialize method for friendship and construct viPortalFriendship class
- */
- init_friendship: function()
- {
- viPortal.loadedFriendship = true;
- viCore.include(viPortal.strBaseUrlJs+'viPortalFriendship.js', '');
- $(function()
- {
- //alert('load');
- //viPortalFriendship.initialize();
- });
- },
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement