ant-devtools-frontend
Advanced tools
Comparing version 0.3.2 to 0.3.3
{ | ||
"name": "ant-devtools-frontend", | ||
"description": "Ant DevTools UI From Chrome", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"main": "index.js", | ||
@@ -6,0 +6,0 @@ "scripts": { |
@@ -18,3 +18,4 @@ let mainTinyModel;const win=window;Ant.makeProxyPromiseOnce=(method,payload,callback)=>new Promise((resolve,reject)=>{window.sendToHost('render',{method,payload,});window.listenToHostOnce(`render-${method}`,(event,args)=>{const{payload}=args;if(callback&&(typeof callback)==='function') | ||
_setChildNodes(parentId,payloads){if(!parentId&&payloads.length){this._setDetachedRoot(payloads[0]);return;} | ||
var parent=this._idToDOMNode[parentId];parent._setChildrenPayload(payloads);} | ||
var parent=this._idToDOMNode[parentId];if(parent) | ||
parent._setChildrenPayload(payloads);} | ||
_childNodeInserted(parentId,prevId,payload){var parent=this._idToDOMNode[parentId];if(!parent||(!payload.localName&&payload.nodeName==='#comment'))return;var prev=this._idToDOMNode[prevId];var node=parent._insertChild(prev,payload);if(node){this._idToDOMNode[node.id]=node;this.dispatchEventToListeners(SDK.DOMModel.Events.NodeInserted,node);this._scheduleMutationEvent(node);}} | ||
@@ -21,0 +22,0 @@ _loadNodeAttributes(){delete this._loadNodeAttributesTimeout;this._attributeLoadNodeIds.clear();} |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6934354
48110