From 41ef3d860cd1a565882cfd84dda72f2d9ad9cef2 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Fri, 15 Feb 2019 13:50:12 +0100 Subject: Move comments to webpack Signed-off-by: Roeland Jago Douma --- apps/comments/js/activitytabviewplugin.js | 59 ------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 apps/comments/js/activitytabviewplugin.js (limited to 'apps/comments/js/activitytabviewplugin.js') diff --git a/apps/comments/js/activitytabviewplugin.js b/apps/comments/js/activitytabviewplugin.js deleted file mode 100644 index b6195b80c45..00000000000 --- a/apps/comments/js/activitytabviewplugin.js +++ /dev/null @@ -1,59 +0,0 @@ -/* - * @author Joas Schilling - * Copyright (c) 2016 - * - * This file is licensed under the Affero General Public License version 3 - * or later. - * - * See the COPYING-README file. - */ - -(function() { - OCA.Comments.ActivityTabViewPlugin = { - - /** - * Prepare activity for display - * - * @param {OCA.Activity.ActivityModel} model for this activity - * @param {jQuery} $el jQuery handle for this activity - * @param {string} view The view that displayes this activity - */ - prepareModelForDisplay: function (model, $el, view) { - if (model.get('app') !== 'comments' || model.get('type') !== 'comments') { - return; - } - - if (view === 'ActivityTabView') { - $el.addClass('comment'); - if (model.get('message') && this._isLong(model.get('message'))) { - $el.addClass('collapsed'); - var $overlay = $('
').addClass('message-overlay'); - $el.find('.activitymessage').after($overlay); - $el.on('click', this._onClickCollapsedComment); - } - } - }, - - /* - * Copy of CommentsTabView._onClickComment() - */ - _onClickCollapsedComment: function(ev) { - var $row = $(ev.target); - if (!$row.is('.comment')) { - $row = $row.closest('.comment'); - } - $row.removeClass('collapsed'); - }, - - /* - * Copy of CommentsTabView._isLong() - */ - _isLong: function(message) { - return message.length > 250 || (message.match(/\n/g) || []).length > 1; - } - }; - - -})(); - -OC.Plugins.register('OCA.Activity.RenderingPlugins', OCA.Comments.ActivityTabViewPlugin); -- cgit v1.2.3