Просмотр исходного кода

Fixes #5499 - Drag´n´Drop of one attachment in the KnowledgeBase articles results in multiple copies

Mantas Masalskis 1 неделя назад
Родитель
Сommit
8e11790f6b

+ 7 - 0
app/assets/javascripts/app/controllers/knowledge_base/sidebar/attachments.coffee

@@ -29,6 +29,13 @@ class App.KnowledgeBaseSidebarAttachments extends App.Controller
       attachments: @object.attachments
     )
 
+    @renderDragAndDropIfNeeded()
+
+  renderDragAndDropIfNeeded: ->
+    return if @dragAndDropRendered
+
+    @dragAndDropRendered = true
+
     html5Upload.initialize(
       uploadUrl:              @object.generateURL('attachments')
       dropContainer:          @el.get(0)