5b4b4740b2
This addon hasn’t been released in a while but we’d like to get the fix for this bug that’s causing an inability to copy long documents in Firefox: https://github.com/codemirror/CodeMirror/issues/2703 It also includes a deprecation fix: https://github.com/IvyApp/ivy-codemirror/pull/40
11 lines
430 B
JavaScript
11 lines
430 B
JavaScript
/* global self */
|
|
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
self.deprecationWorkflow.config = {
|
|
workflow: [
|
|
{ handler: 'throw', matchId: 'ember-inflector.globals' },
|
|
{ handler: 'throw', matchId: 'ember-runtime.deprecate-copy-copyable' },
|
|
{ handler: 'throw', matchId: 'ember-console.deprecate-logger' },
|
|
{ handler: 'log', matchId: 'ember-test-helpers.rendering-context.jquery-element' },
|
|
],
|
|
};
|