app.js 1.0 KB

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