changed generateEventsHelper to use engine.eval instead of eval (fix travis build problem)
This commit is contained in:
parent
e0d5abb5f6
commit
f1a960680a
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ while ( ( entry = zis.nextEntry) != null) {
|
|||
|
||||
// abstract events don't have a static getHandlerList method so
|
||||
// shouldn't be added to this module
|
||||
var hasHandlerList = eval(name + '.getHandlerList');
|
||||
var hasHandlerList = engine.eval(name + '.getHandlerList');
|
||||
if ( !hasHandlerList ) {
|
||||
continue;
|
||||
}
|
||||
|
|
Reference in a new issue