File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ const observerInit = () => {
308308 observer . init ( {
309309 name : "ccCss" ,
310310 observe : [ 'childList' ] ,
311- target : '[class]' ,
311+ selector : '[class]' ,
312312 callback : mutation => {
313313 if ( parse != 'false' )
314314 initElements ( mutation . addedNodes ) ;
@@ -329,7 +329,7 @@ const observerInit = () => {
329329observer . init ( {
330330 name : "cssParseAddedNode" ,
331331 observe : [ 'addedNodes' ] ,
332- target : 'link[parse], link[save], link[object]' ,
332+ selector : 'link[parse], link[save], link[object]' ,
333333 callback : mutation => {
334334 init ( mutation . target ) ;
335335 }
@@ -339,7 +339,7 @@ observer.init({
339339 name : "cssParseattributes" ,
340340 observe : [ "attributes" ] ,
341341 attributeName : [ "parse" , "save" , "object" ] ,
342- target : 'link' ,
342+ selector : 'link' ,
343343 callback : mutation => {
344344 init ( mutation . target ) ;
345345 }
You can’t perform that action at this time.
0 commit comments