modals.js 373 B

1234567891011121314151617
  1. /*global Backbone, _, window */
  2. const Modals = Backbone.NativeView.extend({
  3. el: 'div.modals',
  4. initialize () {
  5. this.render();
  6. },
  7. render () {
  8. const xhr = new XMLHttpRequest();
  9. xhr.open('GET', 'modals.html', true);
  10. xhr.onload = () => {
  11. this.el.innerHTML = xhr.responseText;
  12. }
  13. xhr.send();
  14. }
  15. });