12345678910111213141516171819202122232425 |
- window.fn = {};
-
- window.fn.toggleMenu = function () {
- document.getElementById('appSplitter').right.toggle();
- };
-
- window.fn.loadView = function (index) {
- document.getElementById('appTabbar').setActiveTab(index);
- document.getElementById('sidemenu').close();
- };
-
- window.fn.loadLink = function (url) {
- window.open(url, '_blank');
- };
-
- window.fn.pushPage = function (page, anim) {
- if (anim) {
- document.getElementById('myNavigator').pushPage(page.id, { data: { title: page.title, esp: page.esp } , animation: anim });
- } else {
- document.getElementById('myNavigator').pushPage(page.id, { data: { title: page.title, esp: page.esp } });
- }
- };
-
-
|