Quantcast
Channel: Ionic Forum - Latest posts
Viewing all articles
Browse latest Browse all 228595

In ionic view app window.location Not working but it working in web browser

$
0
0

Your routes should be looking something like this

.state('patient', {
url: "/patient",
templateUrl: 'app/patient/patient.html',
abstract:true
}
})
.state('summary', {
url: "/patientsummary",
views: {
"patContent": {
templateUrl: 'app/patient/patientsummary.html'
}
}
})

then you can use the $state.go('patient.summary')


Viewing all articles
Browse latest Browse all 228595

Trending Articles