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 = () => {
308
308
observer . init ( {
309
309
name : "ccCss" ,
310
310
observe : [ 'childList' ] ,
311
- target : '[class]' ,
311
+ selector : '[class]' ,
312
312
callback : mutation => {
313
313
if ( parse != 'false' )
314
314
initElements ( mutation . addedNodes ) ;
@@ -329,7 +329,7 @@ const observerInit = () => {
329
329
observer . init ( {
330
330
name : "cssParseAddedNode" ,
331
331
observe : [ 'addedNodes' ] ,
332
- target : 'link[parse], link[save], link[object]' ,
332
+ selector : 'link[parse], link[save], link[object]' ,
333
333
callback : mutation => {
334
334
init ( mutation . target ) ;
335
335
}
@@ -339,7 +339,7 @@ observer.init({
339
339
name : "cssParseattributes" ,
340
340
observe : [ "attributes" ] ,
341
341
attributeName : [ "parse" , "save" , "object" ] ,
342
- target : 'link' ,
342
+ selector : 'link' ,
343
343
callback : mutation => {
344
344
init ( mutation . target ) ;
345
345
}
You can’t perform that action at this time.
0 commit comments