render method is public and important (#117)

This commit is contained in:
khaydarov 2017-01-26 01:04:48 +03:00 committed by Peter Savchenko
parent 326767a202
commit b576752c4f

View file

@ -183,8 +183,8 @@ var ui = (function(ui){
continue;
}
if (typeof tool.make != 'function') {
codex.core.log('make method missed. Tool %o skipped', 'warn', name);
if (typeof tool.render != 'function') {
codex.core.log('render method missed. Tool %o skipped', 'warn', name);
continue;
}