You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
306 B

  1. (function () {
  2. var page = {
  3. isScroll: false,
  4. init: function ($page, param) {
  5. $page.find('#cpageTitle').text(param);
  6. $page.find('#pageGoTab').on('tap', function () {
  7. learun.tab.go('demo');
  8. });
  9. }
  10. };
  11. return page;
  12. })();