X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fquickedit%2Fjs%2Fviews%2FEntityDecorationView.js;h=aeaf6e365268b8f95af3039af7e7599a337d5586;hb=refs%2Fheads%2Ft2;hp=ff090fe4c763c8df60880a8c7e85052ab66ddbde;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/modules/quickedit/js/views/EntityDecorationView.js b/web/core/modules/quickedit/js/views/EntityDecorationView.js index ff090fe4c..aeaf6e365 100644 --- a/web/core/modules/quickedit/js/views/EntityDecorationView.js +++ b/web/core/modules/quickedit/js/views/EntityDecorationView.js @@ -1,40 +1,21 @@ /** - * @file - * A Backbone view that decorates the in-place editable entity. - */ +* DO NOT EDIT THIS FILE. +* See the following change record for more information, +* https://www.drupal.org/node/2815083 +* @preserve +**/ (function (Drupal, $, Backbone) { - - 'use strict'; - - Drupal.quickedit.EntityDecorationView = Backbone.View.extend(/** @lends Drupal.quickedit.EntityDecorationView# */{ - - /** - * Associated with the DOM root node of an editable entity. - * - * @constructs - * - * @augments Backbone.View - */ - initialize: function () { + Drupal.quickedit.EntityDecorationView = Backbone.View.extend({ + initialize: function initialize() { this.listenTo(this.model, 'change', this.render); }, - - /** - * @inheritdoc - */ - render: function () { + render: function render() { this.$el.toggleClass('quickedit-entity-active', this.model.get('isActive')); }, - - /** - * @inheritdoc - */ - remove: function () { + remove: function remove() { this.setElement(null); Backbone.View.prototype.remove.call(this); } - }); - -}(Drupal, jQuery, Backbone)); +})(Drupal, jQuery, Backbone); \ No newline at end of file