Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

load.js 656B

12345678910111213141516171819202122232425
  1. window.fn = {};
  2. window.fn.toggleMenu = function () {
  3. document.getElementById('appSplitter').right.toggle();
  4. };
  5. window.fn.loadView = function (index) {
  6. document.getElementById('appTabbar').setActiveTab(index);
  7. document.getElementById('sidemenu').close();
  8. };
  9. window.fn.loadLink = function (url) {
  10. window.open(url, '_blank');
  11. };
  12. window.fn.pushPage = function (page, anim) {
  13. if (anim) {
  14. document.getElementById('myNavigator').pushPage(page.id, { data: { title: page.title, esp: page.esp } , animation: anim });
  15. } else {
  16. document.getElementById('myNavigator').pushPage(page.id, { data: { title: page.title, esp: page.esp } });
  17. }
  18. };