diff --git a/app/assets/javascripts/notes.js b/app/assets/javascripts/notes.js
index 50a54cc12..89daea7ce 100644
--- a/app/assets/javascripts/notes.js
+++ b/app/assets/javascripts/notes.js
@@ -256,14 +256,6 @@ Danbooru.Note = {
text = text.replace(/<\/tn>/g, '
');
text = text.replace(/\n/g, '
');
$note_body.html(text);
-
- $note_body.css("background-color", "");
- if ($note_body.contents(":not(br)").length === 1) {
- var color = $note_body.children().first().css("background-color");
- if (color !== "transparent") {
- $note_body.css("background-color", color);
- }
- }
},
bind_events: function($note_body) {