toh82/page-generator

View on GitHub
web/public/src/js/app/models/template.js

Summary

Maintainability
A
0 mins
Test Coverage
import $ from 'jquery'
import Backbone from 'backbone'

export default Backbone.Model.extend({
  loadTemplateHtml: function () {
    var templateData = this.get('template')

    return $.get('/api/templates/html', templateData)
      .then(function (res) {
        templateData.html = res
      })
  }
})