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 {
|
export class BrowserConfig {
|
||||||
public static OPTIONS: ThemeableBrowserOptions = {
|
// public static OPTIONS: ThemeableBrowserOptions = {
|
||||||
statusbar: {
|
// statusbar: {
|
||||||
color: '#ffffffff'
|
// color: '#ffffffff'
|
||||||
},
|
// },
|
||||||
toolbar: {
|
// toolbar: {
|
||||||
height: 44,
|
// height: 44,
|
||||||
color: '#f0f0f0ff'
|
// color: '#f0f0f0ff'
|
||||||
},
|
// },
|
||||||
title: {
|
// title: {
|
||||||
color: '#003264ff',
|
// color: '#003264ff',
|
||||||
showPageTitle: true
|
// showPageTitle: true
|
||||||
},
|
// },
|
||||||
backButton: {
|
// backButton: {
|
||||||
image: 'back',
|
// image: 'back',
|
||||||
imagePressed: 'back_pressed',
|
// imagePressed: 'back_pressed',
|
||||||
align: 'left',
|
// align: 'left',
|
||||||
event: 'backPressed'
|
// event: 'backPressed'
|
||||||
},
|
// },
|
||||||
forwardButton: {
|
// forwardButton: {
|
||||||
image: 'forward',
|
// image: 'forward',
|
||||||
imagePressed: 'forward_pressed',
|
// imagePressed: 'forward_pressed',
|
||||||
align: 'left',
|
// align: 'left',
|
||||||
event: 'forwardPressed'
|
// event: 'forwardPressed'
|
||||||
},
|
// },
|
||||||
closeButton: {
|
// closeButton: {
|
||||||
image: 'close',
|
// image: 'close',
|
||||||
imagePressed: 'close_pressed',
|
// imagePressed: 'close_pressed',
|
||||||
align: 'left',
|
// align: 'left',
|
||||||
event: 'closePressed'
|
// event: 'closePressed'
|
||||||
},
|
// },
|
||||||
customButtons: [
|
// customButtons: [
|
||||||
{
|
// {
|
||||||
image: 'share',
|
// image: 'share',
|
||||||
imagePressed: 'share_pressed',
|
// imagePressed: 'share_pressed',
|
||||||
align: 'right',
|
// align: 'right',
|
||||||
event: 'sharePressed'
|
// event: 'sharePressed'
|
||||||
}
|
// }
|
||||||
],
|
// ],
|
||||||
menu: {
|
// menu: {
|
||||||
image: 'menu',
|
// image: 'menu',
|
||||||
imagePressed: 'menu_pressed',
|
// imagePressed: 'menu_pressed',
|
||||||
title: 'Test',
|
// title: 'Test',
|
||||||
cancel: 'Cancel',
|
// cancel: 'Cancel',
|
||||||
align: 'right',
|
// align: 'right',
|
||||||
items: [
|
// items: [
|
||||||
{
|
// {
|
||||||
event: 'helloPressed',
|
// event: 'helloPressed',
|
||||||
label: 'Hello World!'
|
// label: 'Hello World!'
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
event: 'testPressed',
|
// event: 'testPressed',
|
||||||
label: 'Test!'
|
// label: 'Test!'
|
||||||
}
|
// }
|
||||||
]
|
// ]
|
||||||
},
|
// },
|
||||||
backButtonCanClose: true,
|
// backButtonCanClose: true,
|
||||||
clearcache: true,
|
// clearcache: true,
|
||||||
clearsessioncache: true,
|
// clearsessioncache: true,
|
||||||
disallowoverscroll: 'yes'
|
// disallowoverscroll: 'yes'
|
||||||
};
|
// };
|
||||||
}
|
}
|
||||||
|
|||||||