Explorar el Código

Omit appContainer arg from PukiwikiLikeLinker

Taichi Masuyama hace 3 años
padre
commit
4872d3d5de
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/plugin-pukiwiki-like-linker/src/client-entry.js

+ 1 - 1
packages/plugin-pukiwiki-like-linker/src/client-entry.js

@@ -1,6 +1,6 @@
 import PukiwikiLikeLinker from './resource/js/util/PreProcessor/PukiwikiLikeLinker';
 
-export default (appContainer) => {
+export default () => {
   // add preprocessor to head of array
   window.growiRenderer.preProcessors.unshift(new PukiwikiLikeLinker());
 };