summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/syntax_highlight.coffee
blob: 71295cd4b08fcad17cf896e0d59e207e2f3fd2b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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>
#
$.fn.syntaxHighlight = ->
  $(this).addClass(gon.user_color_scheme)

$(document).on 'ready page:load', ->
  $('.js-syntax-highlight').syntaxHighlight()