Skip to content

Commit

Permalink
Merge pull request #442 from alexeyten/skip-undefined-blocks
Browse files Browse the repository at this point in the history
Пропускаем неопределённые блоки при обработке события
  • Loading branch information
basvasilich committed Oct 9, 2014
2 parents 39ada85 + e46996b commit 76a44a1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions libs/nanoblocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,13 @@ var nb = nb || {};

// Мы собрали в nodes все ноды внутри блока с именем name.
factory = Factory.get(blockName);

// Событие может случится до того, как мы определим все наноблоки.
// пропустим такой блок
if (!factory) {
continue;
}

// Берем все события, на которые подписан этот блок.
var mixinEvents = factory.events;

Expand Down

0 comments on commit 76a44a1

Please sign in to comment.