Skip to content

Issue when going in and out of windows #3

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);
    }
};

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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