Skip to content

Issue when going in and out of windows #3

@mattlanham

Description

@mattlanham

Hi Kevin,

I had to comment out line 12 of NavigationController.js to get things to correctly function across the two platforms, not sure exactly what's going on, but if i went, in, out, in, out it would loose it's place.

Also we created a back function where you don't want to go home, w.close() didn't always work so our function checks the platform see:

//go back one window NavigationController
exports.NavigationController.prototype.back = function(w) {
    if(Ti.Platform.osname === 'android') {
        w.close();
    }else{
        this.navGroup.close(w);
    }
};

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions