app.js 917 B

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