app.js 777 B

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