ckeditor4-plugin-a11ychecker icon indicating copy to clipboard operation
ckeditor4-plugin-a11ychecker copied to clipboard

Store Quick Fix Repo per AC instance

Open mlewand opened this issue 9 years ago • 1 comments

Currently QF Repo is stored as a static instance under CKEDITOR.plugins.a11ychecker.quickFixes.

On a paper it seemed to be OK, but it's uncomfortable to use, because it's created in plguin.onLoad method. This causes a problem when we want to extend this functionallity, because when we'll add a second plugin, let's name it acextension, then it's not guaranteed that a11ychecker onLoad will be executed before acextension onLoad.

Therefore just for the simplification we'll store a separate QuickFix repo object per AC instance.

mlewand avatar Apr 27 '15 12:04 mlewand