Commit 921b5eee by doszhang

dos

parent c4287214
......@@ -67,6 +67,22 @@ $(document).ready(function () {
});
function deepClone(obj) {
var objClone = new Particle
if (obj && typeof obj === 'object') {
for (key in obj) {
if (key !== 'children') {
objClone[key] = obj[key]
}
}
}
return objClone
}
function init() {
inited = true;
$('.page1').show();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment