app.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. var App = (function(lng, undefined) {
  2. lng.App.init({
  3. name: 'Kitchen Sink',
  4. version: '1.2',
  5. resources: {
  6. sections: [
  7. 'navigation.html',
  8. 'navigation-index.html',
  9. 'navigation-normal.html',
  10. 'navigation-pop.html',
  11. 'navigation-flow.html',
  12. 'lists.html',
  13. 'settings.html',
  14. 'forms.html',
  15. 'buttons-extra.html',
  16. 'aside.html',
  17. 'aside-profiles.html',
  18. 'http://examples.tapquo.com/examples/kitchen-sink/app/sections/remote.html']
  19. }
  20. });
  21. var _getEnvironmentFromQuoJS = (function() {
  22. var environment = lng.Core.environment();
  23. if (environment.isMobile) {
  24. // alert('Your phone is ' + environment.os.name + ' (' + environment.os.version + ')');
  25. }
  26. })();
  27. lng.View.Element.count('#btn-one', 7);
  28. lng.View.Element.count('#btn-three', 0);
  29. lng.View.Element.count('#aside-one', 17);
  30. return {
  31. };
  32. })(LUNGO);