app.js 356 B

12345678910111213141516171819
  1. var App = (function(lng, undefined) {
  2. lng.App.init({
  3. name: 'Kitchen Sink',
  4. version: '1.1',
  5. resources: {
  6. sections: [
  7. 'local.html',
  8. 'http://examples.tapquo.com/remote.html'],
  9. templates: [
  10. 'list-home.html']
  11. }
  12. });
  13. return {
  14. };
  15. })(LUNGO);