consul/consul

View on GitHub
app/assets/javascripts/moderator_comment.js

Summary

Maintainability
A
0 mins
Test Coverage
(function() {
  "use strict";
  App.ModeratorComments = {
    add_class_faded: function(id) {
      $("#" + id + " .comment-body:first").addClass("faded");
    },
    hide_moderator_actions: function(id) {
      $("#" + id + " .js-moderator-comment-actions").hide();
    }
  };
}).call(this);