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> </head>
<body> <body>
<script>(function(){ <script>(function(){
var props = Object.create(null); var props = {};
function addObject(obj) { function addObject(obj) {
if (obj == null) return; if (obj == null) return;