app.js 543 B

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