summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/syntax_highlight.coffee
blob: 510f15d1b49eb19e15ebee3492bd42c49795119a (plain)
1
2
3
4
5
6
7
8
9
# Applies a syntax highlighting color scheme CSS class to any element with the
# `js-syntax-highlight` class
#
# ### Example Markup
#
#   <div class="js-syntax-highlight"></div>
#
$(document).on 'ready page:load', ->
  $('.js-syntax-highlight').addClass(gon.user_color_scheme)