﻿
App.Account = function() {

    /* Private */

    /* Properties */

    var cmp = {};





    /* Methods */

    var init = function() {

        /* Constructor */

        //handle login event
        TVI.addListener('accountChanged', function(d) {

            if (d === undefined) { window.location.href = '/my'; }

        });
        
        
        App.menu('myCampingNinja');

    };





    /* Public */

    TVI.apply(cmp, {

        /* Properties */

        /* Methods */

    });


    TVI.ready(init);


    return cmp;


} ();
