From b576752c4fe8ef1e9f2f9f56bbf72693b2830393 Mon Sep 17 00:00:00 2001 From: khaydarov Date: Thu, 26 Jan 2017 01:04:48 +0300 Subject: [PATCH] render method is public and important (#117) --- modules/ui.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ui.js b/modules/ui.js index ef11433e..e2925bf8 100644 --- a/modules/ui.js +++ b/modules/ui.js @@ -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; }