view.js 466 B

1234567891011121314151617181920212223
  1. App.View = (function(lng, App, undefined) {
  2. lng.View.Template.create(
  3. 'profile-tmp',
  4. '<li class="selectable {{anchor}}">\
  5. <img src="{{avatar}}" />\
  6. <div class="onright">{{name}}</div>\
  7. {{name}}\
  8. <small>{{description}}</small>\
  9. </a>\
  10. </li>'
  11. );
  12. var mockScrolls = function() {
  13. };
  14. return {
  15. mockScrolls: mockScrolls
  16. }
  17. })(LUNGO, App);