app.js 517 B

123456789101112131415161718192021222324
  1. var App = (function(lng, undefined) {
  2. lng.App.init({
  3. name: 'Kitchen Sink',
  4. version: '1.2',
  5. resources: {
  6. sections: [
  7. 'aside.html', 'aside-profiles.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. return {
  17. };
  18. })(LUNGO);