mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
210eb6ef2e
no issue - `ember-drag-drop` still triggers this and spams the console when re-ordering tags in the tags input
16 lines
708 B
JavaScript
16 lines
708 B
JavaScript
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
self.deprecationWorkflow.config = {
|
|
workflow: [
|
|
// remove once ember-drag-drop removes usage of Component#sendAction
|
|
// https://github.com/mharris717/ember-drag-drop/issues/155
|
|
{handler: 'silence', matchId: 'ember-component.send-action'},
|
|
|
|
// remove once liquid-fire and liquid-wormhole remove uses of `this.$()`
|
|
{handler: 'silence', matchId: 'ember-views.curly-components.jquery-element'},
|
|
|
|
// remove once ember-infinity removes usage of `isVisible`
|
|
// https://github.com/ember-infinity/ember-infinity/pull/399
|
|
{handler: 'silence', matchId: 'ember-component.is-visible'}
|
|
]
|
|
};
|