From d8d40ab0f62be3f7f222cb880143cf9a4654caef Mon Sep 17 00:00:00 2001 From: Scott Erickson <sderickson@gmail.com> Date: Mon, 14 Jul 2014 17:46:12 -0700 Subject: [PATCH] Fixes #1116 --- app/views/editor/patch_modal.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/editor/patch_modal.coffee b/app/views/editor/patch_modal.coffee index 37361e129..99c260a73 100644 --- a/app/views/editor/patch_modal.coffee +++ b/app/views/editor/patch_modal.coffee @@ -8,7 +8,7 @@ module.exports = class PatchModal extends ModalView template: template plain: true modalWidthPercent: 60 - @DOC_SKIP_PATHS = ['_id','version', 'commitMessage', 'parent', 'created', 'slug', 'index', '__v', 'patches', 'creator'] + @DOC_SKIP_PATHS = ['_id','version', 'commitMessage', 'parent', 'created', 'slug', 'index', '__v', 'patches', 'creator', 'js'] events: 'click #withdraw-button': 'withdrawPatch'