/**
  * Inject a helper instance with the registered translator
  *
  * @param  JQueryInterface
  * @return void
  */
 public function injectConfig(JQueryPluginManagerAwareInterface $JQuery)
 {
     if ($JQuery instanceof JQueryPluginManagerAwareInterface) {
         $JQuery->setOptions($this->config->getExtraOption(Filter::getClassName($JQuery)));
         $JQuery->setServiceLocator($this->getServiceLocator());
         $this->initJQueryFiles();
         $JQuery->__invoke();
         $this->initScriptJS($JQuery->getScript());
         $this->instanceFilesJS($JQuery->getFiles());
     }
 }