app.js 951 B

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