diff options
author | Byron Jones <bjones@mozilla.com> | 2013-09-27 07:23:40 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-09-27 07:23:40 +0200 |
commit | 0228e2ab199a9b2b0287f3aa02a0f607e22e4054 (patch) | |
tree | 6124f41e5e6f608687314c2864c4dcfe655af5fb /extensions/InlineHistory/web | |
parent | f9defcea6e1ee83189674a355bda8bcf621feebe (diff) | |
download | bugzilla-0228e2ab199a9b2b0287f3aa02a0f607e22e4054.tar.gz bugzilla-0228e2ab199a9b2b0287f3aa02a0f607e22e4054.tar.xz |
Bug 921133: Bugzilla has started to show some CC changes by default
Diffstat (limited to 'extensions/InlineHistory/web')
-rw-r--r-- | extensions/InlineHistory/web/inline-history.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/InlineHistory/web/inline-history.js b/extensions/InlineHistory/web/inline-history.js index 2c63107d3..95a664a42 100644 --- a/extensions/InlineHistory/web/inline-history.js +++ b/extensions/InlineHistory/web/inline-history.js @@ -127,7 +127,7 @@ var inline_history = { } var itemContainer = document.createElement('div'); - itemContainer.className = 'ih_history_item' + containerClass; + itemContainer.className = 'ih_history_item ' + containerClass; itemContainer.id = 'h' + i; itemContainer.innerHTML = item[3] + '<div class="ih_history_change">' + item[2] + '</div>'; |