febs-browser
Advanced tools
Comparing version
@@ -26,2 +26,4 @@ ( function( global, factory ) { | ||
var utils = require('./utils'); | ||
// - parentNodes 父节点 (HTMLNode) | ||
@@ -1323,10 +1325,21 @@ // - name 子节点selector. | ||
CreateDom.extend = function(plugin) { | ||
if (plugin) { | ||
for (const key in plugin) { | ||
if (arguments.length == 0) | ||
return {} | ||
if (arguments.length == 1) { | ||
for (const key in arguments[0]) { | ||
if (key == 'extend' || key == 'fn') continue; | ||
if (typeof plugin[key] === 'function') { | ||
CreateDom[key] = plugin[key]; | ||
if (typeof arguments[0][key] === 'function') { | ||
CreateDom[key] = arguments[0][key]; | ||
} | ||
} | ||
return this; | ||
} | ||
else { | ||
var o = {}; | ||
for (var i = 0; i < arguments.length; i++) { | ||
o = utils.mergeMap(o, arguments[i]); | ||
} | ||
return o; | ||
} // if..else. | ||
} | ||
@@ -1333,0 +1346,0 @@ |
@@ -73,3 +73,3 @@ { | ||
"name": "febs-browser", | ||
"version": "0.7.15" | ||
"version": "0.7.16" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
1474695
0.08%15170
0.13%