app.js 387 B

1234567891011121314151617181920
  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. 'asides.html'],
  10. templates: [
  11. 'list-home.html']
  12. }
  13. });
  14. return {
  15. };
  16. })(LUNGO);