Skip to content

Commit

Permalink
Merge pull request #34 from nysos3/master
Browse files Browse the repository at this point in the history
Remove jQuery dependency
  • Loading branch information
mykeels authored Jan 14, 2020
2 parents d730396 + 2dd41ba commit e5cdc3f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion slack-theme
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,10 @@ document.addEventListener('DOMContentLoaded', function() {
.c-mrkdwn__pre, .c-mrkdwn__quote { background: #535353 !important; background-color: #535353 !important; }
$ADDENDUM
\`
\$('<style></style>').appendTo('head').text(css + overrides);
let s = document.createElement('style');
s.type = 'text/css';
s.innerHTML = css + overrides;
document.head.appendChild(s);
});
"

Expand Down

0 comments on commit e5cdc3f

Please sign in to comment.