| 1234567891011121314151617181920212223242526 |
- var App = (function(lng, undefined) {
- //Define your LungoJS Application Instance
- lng.App.init({
- name: 'Release-Test',
- version: '1.1'
- });
- var _getEnvironmentFromQuoJS = (function() {
- var environment = lng.Core.environment();
- if (environment.isMobile) {
- alert('RELESE: Your phone is ' + environment.os.name + ' (' + environment.os.version + ')');
- }
- })();
- lng.View.Element.count('#btn-one', 7);
- lng.View.Element.count('#btn-three', 0);
- lng.View.Element.count('#aside-one', 17);
- return {
- };
- })(LUNGO);
|