fixed moe issues
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.6 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 285 KiB |
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 129 KiB After Width: | Height: | Size: 123 KiB |
|
Before Width: | Height: | Size: 763 KiB After Width: | Height: | Size: 743 KiB |
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 324 KiB After Width: | Height: | Size: 307 KiB |
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 143 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 813 KiB After Width: | Height: | Size: 786 KiB |
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 2.3 MiB |
@ -1,64 +1,64 @@
|
||||
import { ThemeableBrowserOptions } from '@ionic-native/themeable-browser/ngx';
|
||||
// import { ThemeableBrowserOptions } from '@ionic-native/themeable-browser/ngx';
|
||||
|
||||
export class BrowserConfig {
|
||||
public static OPTIONS: ThemeableBrowserOptions = {
|
||||
statusbar: {
|
||||
color: '#ffffffff'
|
||||
},
|
||||
toolbar: {
|
||||
height: 44,
|
||||
color: '#f0f0f0ff'
|
||||
},
|
||||
title: {
|
||||
color: '#003264ff',
|
||||
showPageTitle: true
|
||||
},
|
||||
backButton: {
|
||||
image: 'back',
|
||||
imagePressed: 'back_pressed',
|
||||
align: 'left',
|
||||
event: 'backPressed'
|
||||
},
|
||||
forwardButton: {
|
||||
image: 'forward',
|
||||
imagePressed: 'forward_pressed',
|
||||
align: 'left',
|
||||
event: 'forwardPressed'
|
||||
},
|
||||
closeButton: {
|
||||
image: 'close',
|
||||
imagePressed: 'close_pressed',
|
||||
align: 'left',
|
||||
event: 'closePressed'
|
||||
},
|
||||
customButtons: [
|
||||
{
|
||||
image: 'share',
|
||||
imagePressed: 'share_pressed',
|
||||
align: 'right',
|
||||
event: 'sharePressed'
|
||||
}
|
||||
],
|
||||
menu: {
|
||||
image: 'menu',
|
||||
imagePressed: 'menu_pressed',
|
||||
title: 'Test',
|
||||
cancel: 'Cancel',
|
||||
align: 'right',
|
||||
items: [
|
||||
{
|
||||
event: 'helloPressed',
|
||||
label: 'Hello World!'
|
||||
},
|
||||
{
|
||||
event: 'testPressed',
|
||||
label: 'Test!'
|
||||
}
|
||||
]
|
||||
},
|
||||
backButtonCanClose: true,
|
||||
clearcache: true,
|
||||
clearsessioncache: true,
|
||||
disallowoverscroll: 'yes'
|
||||
};
|
||||
// public static OPTIONS: ThemeableBrowserOptions = {
|
||||
// statusbar: {
|
||||
// color: '#ffffffff'
|
||||
// },
|
||||
// toolbar: {
|
||||
// height: 44,
|
||||
// color: '#f0f0f0ff'
|
||||
// },
|
||||
// title: {
|
||||
// color: '#003264ff',
|
||||
// showPageTitle: true
|
||||
// },
|
||||
// backButton: {
|
||||
// image: 'back',
|
||||
// imagePressed: 'back_pressed',
|
||||
// align: 'left',
|
||||
// event: 'backPressed'
|
||||
// },
|
||||
// forwardButton: {
|
||||
// image: 'forward',
|
||||
// imagePressed: 'forward_pressed',
|
||||
// align: 'left',
|
||||
// event: 'forwardPressed'
|
||||
// },
|
||||
// closeButton: {
|
||||
// image: 'close',
|
||||
// imagePressed: 'close_pressed',
|
||||
// align: 'left',
|
||||
// event: 'closePressed'
|
||||
// },
|
||||
// customButtons: [
|
||||
// {
|
||||
// image: 'share',
|
||||
// imagePressed: 'share_pressed',
|
||||
// align: 'right',
|
||||
// event: 'sharePressed'
|
||||
// }
|
||||
// ],
|
||||
// menu: {
|
||||
// image: 'menu',
|
||||
// imagePressed: 'menu_pressed',
|
||||
// title: 'Test',
|
||||
// cancel: 'Cancel',
|
||||
// align: 'right',
|
||||
// items: [
|
||||
// {
|
||||
// event: 'helloPressed',
|
||||
// label: 'Hello World!'
|
||||
// },
|
||||
// {
|
||||
// event: 'testPressed',
|
||||
// label: 'Test!'
|
||||
// }
|
||||
// ]
|
||||
// },
|
||||
// backButtonCanClose: true,
|
||||
// clearcache: true,
|
||||
// clearsessioncache: true,
|
||||
// disallowoverscroll: 'yes'
|
||||
// };
|
||||
}
|
||||
|
||||