| 123456789101112131415161718 |
- var App = (function(lng, undefined) {
- var _getEnvironmentFromQuoJS = (function() {
- var environment = lng.Core.environment();
- if (environment.isMobile) {
- alert('Your Device is ' + environment.os.name + ' (' + environment.os.version + ')');
- }
- })();
- eventConsole = function(event) {
- $$('#touchevents-console').html($$(event.target).data('event'));
- };
- return {
- eventConsole: eventConsole
- };
- })(Lungo);
|