dmitriy motorin
Posts: 0
Joined: Mon Aug 05, 2013 12:48 pm

childBrowser resizing

Hello. I have an external links in my app. It opens in childBrowser. But the page in childBrowser cannot be resizing. How can i add "resize page" functional to childBrowser? Thanks

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

childBrowser resizing

Hi Dmitriy,

Try opening different links. The existing of possibility to scale page is regulated by opened page via page attributes.

dmitriy motorin
Posts: 0
Joined: Mon Aug 05, 2013 12:48 pm

childBrowser resizing

No one link has scale possibles :( how can i solve this problem ? may be open links via external browser ?

Anton Artyukh5836028
Posts: 0
Joined: Wed May 08, 2013 12:57 pm

childBrowser resizing

Please, try to open "http://gs.statcounter.com" in childBrowser on real device. On this page you can use pinch to zoom.

Most of modern sites have responsive design -- web page adjusts for screen size. Old sites (like link above) doesn't have this option.

Just in case, for tests I using this function, which placed in JS-asset:
precodefunction myNavigate( url ) {
var cb;
if ( window.plugins ) {
cb = window.plugins.childBrowser;
}
if ( cb != null ) {
cb.showWebPage( url );
} else {
window.open( url );
};
}/code/pre

Return to “Issues”