app.js 597 B

1234567891011121314151617181920212223242526
  1. var App = (function(lng, undefined) {
  2. //Define your LungoJS Application Instance
  3. lng.App.init({
  4. name: 'Release-Test',
  5. version: '1.1'
  6. });
  7. var _getEnvironmentFromQuoJS = (function() {
  8. var environment = lng.Core.environment();
  9. if (environment.isMobile) {
  10. alert('RELESE: Your phone is ' + environment.os.name + ' (' + environment.os.version + ')');
  11. }
  12. })();
  13. lng.View.Element.count('#btn-one', 7);
  14. lng.View.Element.count('#btn-three', 0);
  15. lng.View.Element.count('#aside-one', 17);
  16. return {
  17. };
  18. })(LUNGO);