Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. var MainView = Mn.LayoutView.extend({
  2. template: $(html).filter('#main')[0].outerHTML,
  3. regions: {...},
  4. ....
  5. });
  6. return MainView;
  7.  
  8. define([script.js], function(MainView) {
  9. $.ajax({
  10. url: url,
  11. success: function(data){
  12. this.main.show(
  13. new MainView({ select_options: options });
  14. )
  15. }
  16. });
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement