Skip to content

mauropm/titanium-appcelerator-mini-browser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

What is this?

This is a mini-browser module to use in Titanium Appcelerator

How to use it?

You have just to instance the MiniBrowser to a variable, and create it. It will return a Window, and you can do what you want. See these examples:

Modal Window

var modalBrowser = new MiniBrowser({
	url:"http://www.google.com/",
    barColor:"#000",
    modal:true
});

var winModalBrowser = modalBrowser.create();

winModalBrowser.open();

TabGroup

var tabGroupedBrowser = new MiniBrowser({
	url:"http://www.google.com/",
    barColor:"#000"
});

Ti.UI.currentTab.open(tabGroupedBrowser.create());

Images

About

A mini-browser to Titanium Appcelerator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published