remove duplicated prop copying

This commit is contained in:
Zeke Sikelianos 2016-10-10 11:07:01 -07:00
Родитель b7e078e98d
Коммит 2cd10d339f
1 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -295,12 +295,6 @@ Menu.buildFromTemplate = function (template) {
throw new TypeError('Invalid template for MenuItem')
}
menuItem = new MenuItem(item)
for (key in item) {
// Preserve extra fields specified by user
if (!menuItem.hasOwnProperty(key)) {
menuItem[key] = item[key]
}
}
menu.append(menuItem)
}
return menu