1
0
Эх сурвалжийг харах

Fix copy-to-clipboard links in highlighted code blocks

Thibaut Courouble 9 жил өмнө
parent
commit
7394ab0852

+ 6 - 1
assets/javascripts/views/pages/base.coffee

@@ -37,7 +37,12 @@ class app.views.BasePage extends app.View
         @nodesPerFrame = Math.round(Math.max(@nodesPerFrame * .8, 10))
     else
       @nodesPerFrame = 10
-    Prism.highlightElement(el) for el in @highlightNodes.splice(0, @nodesPerFrame)
+
+    for el in @highlightNodes.splice(0, @nodesPerFrame)
+      $.remove(clipEl) if clipEl = el.lastElementChild
+      Prism.highlightElement(el)
+      $.append(el, clipEl) if clipEl
+
     $.requestAnimationFrame(@paintCode) if @highlightNodes.length > 0
     @previousTiming = timing
     return