mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
293 B
11 lines
293 B
![]()
8 years ago
|
#= require views/pages/base
|
||
|
|
||
|
class app.views.CodeceptionPage extends app.views.BasePage
|
||
|
LANGUAGE_RGX = /language-(\w+)/
|
||
|
|
||
|
prepare: ->
|
||
|
for el in @findAll('pre > code')
|
||
|
if el.className.match(LANGUAGE_RGX)
|
||
|
@highlightCode(el, el.className.match(LANGUAGE_RGX)[1])
|
||
|
return
|