From 0b66c2cddbed617c1b336fb9cd1f80a11e9a2eb6 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Tue, 25 Nov 2014 13:49:48 -0800 Subject: [PATCH] Disable papaparse because it breaks everything Bug: T75896 Change-Id: I7450734602eb32588f310c8f76d55fdb2f58f4fa --- VisualEditor.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/VisualEditor.php b/VisualEditor.php index d50824a329..8afdd86746 100644 --- a/VisualEditor.php +++ b/VisualEditor.php @@ -562,7 +562,8 @@ $wgResourceModules += array( 'lib/ve/src/ui/dialogs/ve.ui.ProgressDialog.js', 'lib/ve/src/ui/dialogs/ve.ui.CommandHelpDialog.js', - 'lib/ve/src/ui/filedrophandlers/ve.ui.DSVFileDropHandler.js', + // FIXME disabled because papaparse is broken (T75896) + //'lib/ve/src/ui/filedrophandlers/ve.ui.DSVFileDropHandler.js', 'lib/ve/src/ui/filedrophandlers/ve.ui.PlainTextFileDropHandler.js', 'lib/ve/src/ui/filedrophandlers/ve.ui.HTMLFileDropHandler.js', @@ -633,7 +634,8 @@ $wgResourceModules += array( ), 'dependencies' => array( 'unicodejs', - 'papaparse', + // FIXME papaparse is broken (T75896) + //'papaparse', 'jquery.uls.data', 'ext.visualEditor.base', ),