From 0d49777e1a423be4c76943034cd852c852f02d88 Mon Sep 17 00:00:00 2001 From: oc Date: Wed, 17 Apr 2019 16:02:17 +0800 Subject: [PATCH] Fix blockly searchInput --- _server/editor_blockly.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_server/editor_blockly.js b/_server/editor_blockly.js index ba2f16e5..02453bab 100644 --- a/_server/editor_blockly.js +++ b/_server/editor_blockly.js @@ -673,11 +673,11 @@ function omitedcheckUpdateFunction(event) { var searchInput = document.getElementById("searchBlock"); searchInput.onfocus = function () { - editor_blockly.reopenToolbox(9); + editor_blockly.reopenToolbox(10); } searchInput.oninput = function () { - editor_blockly.reopenToolbox(9); + editor_blockly.reopenToolbox(10); } editor_blockly.searchBlock = function (value) {