app.js 1012 B

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