kai-jacobsen/kontentblocks

View on GitHub
js/src/fields/FieldControlBaseView.js

Summary

Maintainability
A
0 mins
Test Coverage
//KB.Fields.BaseView
module.exports = Backbone.View.extend({
  rerender: function(){
    this.render();
  },
  gone: function () {
    this.trigger('field.view.gone', this);
    // this.derender();
  },
  toString: function(){
    return '';
  }
});