app.js 657 B

12345678910111213141516171819202122232425262728
  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/remote.html'*/
  8. ]
  9. });
  10. var _getEnvironmentFromQuoJS = (function() {
  11. var environment = lng.Core.environment();
  12. if (environment.isMobile) {
  13. // alert('Your phone is ' + environment.os.name + ' (' + environment.os.version + ')');
  14. }
  15. })();
  16. lng.View.Element.count('#btn-one', 7);
  17. lng.View.Element.count('#btn-three', 0);
  18. lng.View.Element.count('#aside-one', 17);
  19. return {
  20. };
  21. })(LUNGO);