mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
e2e: make examples build per-platform
This commit is contained in:
@ -46,14 +46,15 @@ var ua = window.navigator.userAgent;
|
||||
platform.register({
|
||||
name: 'android',
|
||||
matcher() {
|
||||
return /android/i.test(ua);
|
||||
//TODO Make a better override than window
|
||||
return window.IONIC_PLATFORM == 'android' || /android/i.test(ua);
|
||||
}
|
||||
});
|
||||
platform.register({
|
||||
name: 'ios',
|
||||
// For now always default to ios
|
||||
matcher() {
|
||||
return true;
|
||||
return window.IONIC_PLATFORM === 'ios';
|
||||
}
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user