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

load.js 806B

1234567891011121314151617181920212223242526
  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. //Open and send json file of renglon
  14. var artesanos = JSON.parse(localStorage.getItem(page.title.toUpperCase()));
  15. if (anim) {
  16. document.getElementById('myNavigator').pushPage(page.id, { data: { title: page.title, esp: page.esp, json: artesanos } , animation: anim });
  17. } else {
  18. document.getElementById('myNavigator').pushPage(page.id, { data: { title: page.title, esp: page.esp, json: artesanos } });
  19. }
  20. };