Don't use Object.create

This commit is contained in:
Mihai Bazon 2015-03-19 12:54:43 +02:00
parent bb010c2253
commit 81b7335267

View File

@ -3,7 +3,7 @@
</head>
<body>
<script>(function(){
var props = Object.create(null);
var props = {};
function addObject(obj) {
if (obj == null) return;