app.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. var App = (function(lng, undefined) {
  2. //Define your LungoJS Application Instance
  3. lng.App.init({
  4. name: 'Release-Test',
  5. version: '1.2',
  6. resources: {
  7. sections: [
  8. 'navigation.html',
  9. 'buttons.html',
  10. 'lists.html',
  11. 'settings.html',
  12. 'forms.html',
  13. 'buttons-extra.html',
  14. 'aside.html',
  15. 'aside-profiles.html',
  16. 'http://examples.tapquo.com/examples/kitchen-sink/app/sections/remote.html',
  17. 'http://examples.tapquo.com/examples/kitchen-sink/app/sections/error.html']
  18. }
  19. });
  20. var _getEnvironmentFromQuoJS = (function() {
  21. var environment = lng.Core.environment();
  22. if (environment.isMobile) {
  23. alert('RELESE: 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);