app.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. 'lists.html',
  12. 'settings.html',
  13. 'forms.html',
  14. 'buttons-extra.html',
  15. 'aside.html',
  16. 'aside-profiles.html',
  17. 'http://examples.tapquo.com/examples/kitchen-sink/app/sections/remote.html']
  18. }
  19. });
  20. var _getEnvironmentFromQuoJS = (function() {
  21. var environment = lng.Core.environment();
  22. if (environment.isMobile) {
  23. // alert('Your phone is ' + environment.os.name + ' (' + environment.os.version + ')');
  24. }
  25. })();
  26. lng.View.Element.count('#btn-one', 7);
  27. lng.View.Element.count('#btn-three', 0);
  28. lng.View.Element.count('#aside-one', 17);
  29. return {
  30. };
  31. })(LUNGO);