ckeditor4-plugin-a11ychecker
ckeditor4-plugin-a11ychecker copied to clipboard
Store Quick Fix Repo per AC instance
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.